ACryptLib.ACrypt.DecryptPasswordString C# (CSharp) Method

DecryptPasswordString() public static method

暗号化されたパスワード文字列を復号化する
public static DecryptPasswordString ( string str ) : string
str string 暗号化された文字列
return string
        public static string DecryptPasswordString(string str)
        {
            // パスワード暗号化用のパス文字列を使用して文字列を復号化する。
            return DecryptString(str, "@K@nEmAiL_3DES_Key");
        }