| 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
)
Protected Function CalcuateKeyFromStrings (
string1 As String,
string2 As String,
key As Byte(),
iv As Byte()
) As Byte()
protected:
array<unsigned char>^ CalcuateKeyFromStrings(
String^ string1,
String^ string2,
array<unsigned char>^ key,
array<unsigned char>^ iv
)
member CalcuateKeyFromStrings :
string1 : string *
string2 : string *
key : byte[] *
iv : byte[] -> byte[]
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:
ByteAn array of bytes containing the new key.
See Also