Discuss this help topic in SecureBlackbox Forum

TElSymmetricCrypto.Nonce

TElSymmetricCrypto     


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


Specifies the nonce value.

Declaration

[C#]
    byte[] Nonce;

[VB.NET]
    Property Nonce As Byte()

[Pascal]
    property Nonce : ByteArray;

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

[PHP]
    string get_Nonce()
    void set_Nonce(array of byte|string|NULL $Value)

[Java]
    byte[] getNonce();
    void setNonce(byte[] Value);

Description

Use this property to specify the cryptographic nonce. A nonce is used to prevent so-called replay attacks. This, usually random, number is used to distinguish between different authentication attempts.

Discuss this help topic in SecureBlackbox Forum