public string SuperEncrype(string input) { string res = RSA_Encrype.getResult(input); res = DES_Encrype.getResult(res); return(AES_Encrype.getResult(res)); }
public mEncrypt() { RSA_Encrype = new RSA_Encrype(); DES_Encrype = new DES_Encrype(); AES_Encrype = new AES_Encrype(); }