Discuss this help topic in SecureBlackbox Forum

TElXMLCipherData.CipherValue

TElXMLCipherData     See also     


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


Contains the data of CipherData element.

Declaration

[C#]
    byte[] CipherValue;

[VB.NET]
    Property CipherValue As Byte()

[Pascal]
    property CipherValue : TElXMLCipherValue;

[C++]
    void get_CipherValue(std::vector<uint8_t> &OutResult);
    void set_CipherValue(const std::vector<uint8_t> &Value);

[PHP]
    string get_CipherValue()
    void set_CipherValue(array of byte|string|NULL $Value)

[Java]
    byte[] getCipherValue();
    void setCipherValue(byte[] Value);

Description

     This property contains value of CipherValue XML element. CipherValue must contain the encrypted octet sequence as base64 encoded text. If the value is not specified, CipherReference must point to an external data.

See also:     CipherReference    

Discuss this help topic in SecureBlackbox Forum