Click or drag to resize

SecurIdSdtidTokenCalcuateKeyFromStrings Method

Calculate a key using two string values, an existing key, and an initialization vector (IV).

Namespace:  SamoyedSoftware.ursa
Assembly:  SamoyedSoftware.ursa (in SamoyedSoftware.ursa.dll) Version: 0.2.0
Syntax
protected byte[] CalcuateKeyFromStrings(
	string string1,
	string string2,
	byte[] key,
	byte[] iv
)

Parameters

string1
Type: SystemString
A string containing the first value that will be used to generate the key.
string2
Type: SystemString
A string containing the second value that will be used to generate the key.
key
Type: SystemByte
An array of bytes containing an existing key.
iv
Type: SystemByte
An array of bytes containing an initialization vector (IV).

Return Value

Type: Byte
An array of bytes containing the new key.
See Also