Example #1
0
    public static string Encrypt(KeyType keyType, string unencrypted)
    {
        SimpleAES aes = new SimpleAES(keyType);

        return(aes._Encrypt(unencrypted));
    }
Example #2
0
 public static string Encrypt(KeyType keyType, string unencrypted)
 {
     SimpleAES aes = new SimpleAES(keyType);
     return aes._Encrypt(unencrypted);
 }