Ejemplo n.º 1
0
 public static byte[] Hash(byte[] message)
 {
     byte[] array = new byte[64];
     SodiumLibrary.crypto_hash(array, message, (long)message.Length);
     return(array);
 }