Discuss this help topic in SecureBlackbox Forum
Contains the decrypted data (unparsed)
Declaration
[C#]
byte[] DecryptedData;
[VB.NET]
Property DecryptedData As Byte()
[Pascal]
property DecryptedData : ByteArray; {array of byte}
[C++]
void get_DecryptedData(std::vector<uint8_t> &OutResult);
void set_DecryptedData(const std::vector<uint8_t> &Value);
[PHP]
string get_DecryptedData()
void set_DecryptedData(array of byte|string|NULL $Value)
[Java]
byte[] getDecryptedData();
void setDecryptedData(byte[] Value);
Description
Use this property after successful call to Decrypt to read the decrypted data (unparsed).
Discuss this help topic in SecureBlackbox Forum