public static string AesDecrypt(this string str, string key) { Security.Aes aes = new Security.Aes(); return(aes.Decrypt(str, key)); }
public static string AesEncrypt(this string str) { Security.Aes aes = new Security.Aes(); return(aes.Encrypt(str)); }