| SecurIdTokenDecrypt Method (String, String) |
When implemented in a derived class, decrypts the token using the supplied password and Device ID (Serial Number).
Namespace:
SamoyedSoftware.ursa
Assembly:
SamoyedSoftware.ursa (in SamoyedSoftware.ursa.dll) Version: 0.2.0
Syntax public abstract void Decrypt(
string pass,
string devid
)
Public MustOverride Sub Decrypt (
pass As String,
devid As String
)
public:
virtual void Decrypt(
String^ pass,
String^ devid
) abstract
abstract Decrypt :
pass : string *
devid : string -> unit
Parameters
- pass
- Type: SystemString
String containing the password for the token. If the token does not require a password, an empty string should be passed. - devid
- Type: SystemString
String containing the Device ID/Serial Number for the token.
Exceptions Remarks
This is an abstract method, implemented by each derived class.
See Also