| SecurIdSdtidTokenDecryptSeed Method |
Decrypt a token's Seed value.
Namespace:
SamoyedSoftware.ursa
Assembly:
SamoyedSoftware.ursa (in SamoyedSoftware.ursa.dll) Version: 0.2.0
Syntax protected byte[] DecryptSeed(
byte[] seed,
string partialIV,
byte[] key
)
Protected Function DecryptSeed (
seed As Byte(),
partialIV As String,
key As Byte()
) As Byte()
protected:
array<unsigned char>^ DecryptSeed(
array<unsigned char>^ seed,
String^ partialIV,
array<unsigned char>^ key
)
member DecryptSeed :
seed : byte[] *
partialIV : string *
key : byte[] -> byte[]
Parameters
- seed
- Type: SystemByte
An array of bytes containing a token's encrypted seed value - partialIV
- Type: SystemString
A string that will be used as part of the initialization vector (IV) for the decryption. - key
- Type: SystemByte
An array of bytes containing the decryption key.
Return Value
Type:
ByteAn array of bytes containing the decrypted seed.
See Also