Esempio n. 1
0
 static string Decrypt(this Flare flare, string key, string iv)
 {
     return(flare.Decrypt(ConvertBackports.FromHexString(key), ConvertBackports.FromHexString(iv)));
 }
Esempio n. 2
0
 public static string Decrypt(this Flare flare, AesInfo info)
 {
     return(flare.Decrypt(info.Key, info.IV));
 }