NQCryptDecryptDecrypt Method (String, String) |
Decrypt a string into a string using a password.
Namespace:
NetQuarry
Assembly:
EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax public static string Decrypt(
string cipherText,
string password
)
Public Shared Function Decrypt (
cipherText As String,
password As String
) As String
Parameters
- cipherText
- Type: SystemString
The string to decrypt. The string should have been the base64 encoded. - password
- Type: SystemString
The password originally used to encrypt the data.
Return Value
Type:
StringThe resulting decrypted string.
See Also