Discuss this help topic in SecureBlackbox Forum
Contains the 'salt' used for key derivation.
Declaration
[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.
Discuss this help topic in SecureBlackbox Forum