 | CryptEncryptToBase64 Method |
Encrypt a string by Rijndael's algorithm
Namespace: ToolBooxAssembly: ToolBoox (in ToolBoox.dll) Version: 1.1.0.0 (1.1.0.0)
Syntaxpublic static string EncryptToBase64(
string clearText,
string keySeed,
string salt
)
Public Shared Function EncryptToBase64 (
clearText As String,
keySeed As String,
salt As String
) As String
Parameters
- clearText
- Type: SystemString
String to crypt - 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