 | CryptDecryptFromBase64 Method |
Decrypt a string by Rijndael's algorithm
Namespace: ToolBooxAssembly: ToolBoox (in ToolBoox.dll) Version: 1.1.0.0 (1.1.0.0)
Syntaxpublic static string DecryptFromBase64(
string cipherText,
string keySeed,
string salt
)
Public Shared Function DecryptFromBase64 (
cipherText As String,
keySeed As String,
salt As String
) As String
Parameters
- cipherText
- Type: SystemString
String to decrypt - keySeed
- Type: SystemString
Seed value to use (must be unique) - salt
- Type: SystemString
Salt value to use (must be at least 8 bytes)
Return Value
Type:
StringDecrypted string; String.Empty on error
See Also