CipherConfigDecrypt Method
Namespace: Gemstone.Security.CryptographyAssembly: Gemstone.Security (in Gemstone.Security.dll) Version: 1.0.155 -- Release Build+d8de0108f73c26e6d2af6f3161db9c9ea851a15c
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.