CipherConfigDecrypt Method
Namespace: Gemstone.Security.CryptographyAssembly: Gemstone.Security (in Gemstone.Security.dll) Version: 1.0.141 -- Release Build+66d368290fc3969c6d3bda8d60209763df6edfee
public static string ConfigDecrypt(
this string value
)
<ExtensionAttribute>
Public Shared Function ConfigDecrypt (
value As String
) As String
public:
[ExtensionAttribute]
static String^ ConfigDecrypt(
String^ value
)
Gemstone.Security.Cryptography.Cipher.ConfigDecrypt = function(value);
- value String
- Encoded configuration setting value.
StringDecoded configuration setting.In Visual Basic and C#, you can call this method as an instance method on any object of type
String. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
If no key name is specified, value is assumed to not be encoded and is returned as is.
It is recommended to use this method at the last possible moment, e.g., in stack variables,
to avoid storing decrypted data in memory for longer periods of time.