コード例 #1
0
        public String genarate_key( )
        {
            String returngenarate_key;

            if (Encrypt_Method_externalReference == null)
            {
                Encrypt_Method_externalReference = new GX_Method.Utils.Encrypt_Method();
            }
            returngenarate_key = "";
            returngenarate_key = (String)(Encrypt_Method_externalReference.Genarate_Key());
            return(returngenarate_key);
        }
コード例 #2
0
        public String des_decode(String gxTp_password,
                                 String gxTp_key)
        {
            String returndes_decode;

            if (Encrypt_Method_externalReference == null)
            {
                Encrypt_Method_externalReference = new GX_Method.Utils.Encrypt_Method();
            }
            returndes_decode = "";
            returndes_decode = (String)(Encrypt_Method_externalReference.DES_Decode(gxTp_password, gxTp_key));
            return(returndes_decode);
        }