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