Discuss this help topic in SecureBlackbox Forum

TElHMACKeyMaterial.Key

TElHMACKeyMaterial     


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


This property contains the HMAC key

Declaration

[C#]
    byte[] Key;
    TElCustomCryptoKey Key;

[VB.NET]
    Property Key As Byte()
    Property Key As TElCustomCryptoKey

[Pascal]
    property Key : ByteArray; {array of byte}

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

[PHP]
    string get_Key()
    void set_Key(array of byte|string|NULL $Value)

[Java]
    byte[] getKey();
    void setKey(byte[] Value);

Description

    Use this property to specify the HMAC key

Discuss this help topic in SecureBlackbox Forum