Ejemplo n.º 1
0
 public static string DecodingASCII(byte[] buf, AsymCryptography cryptoService)
 {
     return(cryptoService.Decrypt(Encoding.ASCII.GetString(buf)));
 }
Ejemplo n.º 2
0
 public static byte[] EncodingASCII(string buf, AsymCryptography cryptoService)
 {
     return(Encoding.Unicode.GetBytes(cryptoService.Encrypt(buf)));
 }