| SecurIdSdtidTokenDecryptSecret Method |
Decrypt a token's Secret value.
Namespace:
SamoyedSoftware.ursa
Assembly:
SamoyedSoftware.ursa (in SamoyedSoftware.ursa.dll) Version: 0.2.0
Syntax protected byte[] DecryptSecret(
byte[] secret,
string partialIV,
byte[] key
)
Protected Function DecryptSecret (
secret As Byte(),
partialIV As String,
key As Byte()
) As Byte()
protected:
array<unsigned char>^ DecryptSecret(
array<unsigned char>^ secret,
String^ partialIV,
array<unsigned char>^ key
)
member DecryptSecret :
secret : byte[] *
partialIV : string *
key : byte[] -> byte[]
Parameters
- secret
- Type: SystemByte
An array of bytes containing a token Secret - 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 Secret.
See Also