Discuss this help topic in SecureBlackbox Forum

TElPKCS11SessionInfo.SetPIN

TElPKCS11SessionInfo     See also     


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


Changes the PIN code for the token.

Declaration

[C#]
    void SetPIN(string OldPin, string NewPin);

[VB.NET]
    Sub SetPIN(ByVal OldPin As String, ByVal NewPin As String)

[Pascal]
    procedure SetPIN(const OldPin : string; const NewPin : string);

[C++]
    void SetPIN(const std::string &OldPin, const std::string &NewPin);

[PHP]
    void SetPIN(string $OldPin, string $NewPin)

[Java]
    void setPIN(String OldPin, String NewPin);

Parameters

  • OldPin - old PIN code.
  • NewPin - new PIN code.

Description

    Use this method to change the token's PIN code. To init the PIN code (set it for the first time), use InitPIN method.

See also:     InitPIN    

Discuss this help topic in SecureBlackbox Forum