ACryptLib.ACrypt.DecryptPasswordString C# (CSharp) 메소드

DecryptPasswordString() 공개 정적인 메소드

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