Exemplo n.º 1
0
 public static byte[] EncryptTripleDES(byte[] clear)
 {
     using (TripleDesCryptor tripleDesCryptor = new TripleDesCryptor())
         return(tripleDesCryptor.Encrypt(clear));
 }
Exemplo n.º 2
0
 public static string EncryptTripleDES(string clear)
 {
     using (TripleDesCryptor tripleDesCryptor = new TripleDesCryptor())
         return(tripleDesCryptor.Encrypt(clear));
 }