Discuss this help topic in SecureBlackbox Forum
Decrypts the data.
Declaration
Parameters
- AlgID - specifies algorithm identifier.
- Buffer - buffer containing the data to be decrypted.
- Size - size of the data block to be decrypted.
- Offset - offset of the data to be decrypted in Buffer.
- Count - number of bytes to be read from Buffer.
- IV - specifies Initial Vector.
- InBuffer - reference to the data to decrypt.
- InIndex - offset of the input data in the input array.
- InSize - size of input data in bytes.
- InStream - the stream with the data for decryption.
- InCount - number of bytes to be read from InStream.
- Key - specifies the secret key.
- Mode - specifies encryption mode.
- OutBuffer - reference to buffer where decrypted data should be stored.
- OutIndex - Offset in the output array, starting from which the data is written.
- OutSize - Size of available space in OutBuffer in bytes.
- OutStream - the stream to which the decrypted data will be written.
Algorithm identifier values:
Mode values:
Return value
Returns the decrypted data.
Description
Use this method when you want to decrypt the data and you have all data for decryption at hand. This method is a shorthand for InitializeDecryption / DecryptUdpdate / FinalizeDecryption sequence of calls.
Discuss this help topic in SecureBlackbox Forum