Discuss this help topic in SecureBlackbox Forum
Specifies the masking key.
Declaration
[VB.NET]
Property MaskKey As Byte()
[Pascal]
property MaskKey : ByteArray;
[C++]
void get_MaskKey(std::vector<uint8_t> &OutResult);
void set_MaskKey(const std::vector<uint8_t> &Value);
[PHP]
string get_MaskKey()
void set_MaskKey(array of byte|string|NULL $Value)
[Java]
byte[] getMaskKey();
void setMaskKey(byte[] Value);
Description
When Mask is True, this property contains a 32-bit masking key.
The masking key should be randomly generated by the client.
When Mask is False, MaskKey should be empty (0 bytes).
Discuss this help topic in SecureBlackbox Forum