示例#1
0
        public string SuperEncrype(string input)
        {
            string res = RSA_Encrype.getResult(input);

            res = DES_Encrype.getResult(res);
            return(AES_Encrype.getResult(res));
        }
示例#2
0
 public mEncrypt()
 {
     RSA_Encrype = new RSA_Encrype();
     DES_Encrype = new DES_Encrype();
     AES_Encrype = new AES_Encrype();
 }