ACryptLib.ACrypt.EncryptPasswordString C# (CSharp) Method

EncryptPasswordString() public static method

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