Discuss this help topic in SecureBlackbox Forum
Decrypts data.
Declaration
Parameters
- InBuffer - encrypted data.
- InIndex - offset of the encrypted data in InBuffer.
- InSize - number of bytes to be read from InBuffer.
- OutBuffer - decrypted data will be saved to this buffer.
- OutIndex - offset in the OutBuffer where to start writing decrypted data.
- OutSize - the amount of free space available in OutBuffer.
- InStream - the stream with encrypted data.
- InCount - the number of bytes to be read from InStream.
- OutStream - the stream where the decrypted data should be saved.
Return value
Returns True on success and False otherwise.
Description
Use this method to decrypt data when you have all data at hand. It is a shorthand for InitializeDecryption / DecryptUdpdate / FinalizeDecryption sequence of calls.
Discuss this help topic in SecureBlackbox Forum