Discuss this help topic in SecureBlackbox Forum

TElOpenOfficeXMLManifestKeyDerivation.Salt

TElOpenOfficeXMLManifestKeyDerivation     See also     


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


Contains the 'salt' used for key derivation.

Declaration

[C#]
    byte[] Salt;

[VB.NET]
    Property Salt As Byte()

[Pascal]
    property Salt : ByteArray;

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

[PHP]
    string get_Salt()
    void set_Salt(array of byte|string|NULL $Value)

[Java]
    byte[] getSalt();
    void setSalt(byte[] Value);

Description

    Use this property to specify the 16-byte binary sequence that is used as a 'salt' by key derivation algorithm. The value of this property should be Base64-encoded.

See also:     KeyDerivationName    

Discuss this help topic in SecureBlackbox Forum