IEncryptionRoutinesDecryptString Method |
Decrypts a string using the provided key string as a decryption token.
Namespace: Rally.RestApi.AuthAssembly: Rally.RestApi (in Rally.RestApi.dll) Version: 3.1.1.0 (3.1.1.0)
Syntax string DecryptString(
string keyString,
string textToDecrypt
)
Function DecryptString (
keyString As String,
textToDecrypt As String
) As String
String^ DecryptString(
String^ keyString,
String^ textToDecrypt
)
abstract DecryptString :
keyString : string *
textToDecrypt : string -> string
Parameters
- keyString
- Type: SystemString
The key string, or salt, to use when decrypting. - textToDecrypt
- Type: SystemString
The text to be decrypted.
Return Value
Type:
StringThe decrypted string.
See Also