| SecurIdSdtidTokenHashPassword Method |
Calculate a hash value for a token password, using the supplied salt values.
Namespace:
SamoyedSoftware.ursa
Assembly:
SamoyedSoftware.ursa (in SamoyedSoftware.ursa.dll) Version: 0.2.0
Syntax protected byte[] HashPassword(
string pass,
string salt0,
string salt1
)
Protected Function HashPassword (
pass As String,
salt0 As String,
salt1 As String
) As Byte()
protected:
array<unsigned char>^ HashPassword(
String^ pass,
String^ salt0,
String^ salt1
)
member HashPassword :
pass : string *
salt0 : string *
salt1 : string -> byte[]
Parameters
- pass
- Type: SystemString
A string containing a token password. - salt0
- Type: SystemString
A string containing a salt value that will be used in the hash operation. - salt1
- Type: SystemString
A string containing a second salt value that will be used in the hash operation.
Return Value
Type:
ByteAn array of bytes containing the results of the hash.
See Also