Exemplo n.º 1
0
 private static string DecryptString(string text, ICrpytoParams crpytoParams)
 {
     using (var crypto = new CryptoWork(crpytoParams))
     {
         return(crypto.Decrypt(text));
     }
 }
Exemplo n.º 2
0
 public string EncryptString(string text, ICrpytoParams crpytoParams)
 {
     return(CryptoWork.Brent(text, crpytoParams));
 }
Exemplo n.º 3
0
 public string DecryptString(string text, ICrpytoParams crpytoParams)
 {
     return(CryptoWork.Carol(text, crpytoParams));
 }