Discuss this help topic in SecureBlackbox Forum

TElXMLDecryptor.DecryptedData

TElXMLDecryptor     See also     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


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).

See also:     Decrypt     DecryptNode     DecryptNodeList    

Discuss this help topic in SecureBlackbox Forum