Discuss this help topic in SecureBlackbox Forum

TElOTPServer.Delta

TElOTPServer     See also     


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


Specifies the resynchronization limit.

Declaration

[C#]
    int Delta;

[VB.NET]
    Property Delta As Integer

[Pascal]
    property Delta: integer;

[C++]
    int32_t get_Delta();
    void set_Delta(int32_t Value);

[PHP]
    integer get_Delta()
    void set_Delta(integer $Value)

[Java]
    int getDelta();
    void setDelta(int Value);

Description

    This property is used to overcome the asynchronicity between client and server. For HOTP server (HMAC-based one-time password, RFC 4226) Delta contains the maximum possible deviation of the client's counter value. For TOTP server (Time-based one-time password, RFC 6238) Delta contains the maximum number of time steps the client can be "out of synch".
    The default value is 0.

See also:     TElHOTPServer     TElTOTPServer    

Discuss this help topic in SecureBlackbox Forum