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