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