Exemple #1
0
 public static byte[] Sha512(byte[] message)
 {
     byte[] array = new byte[64];
     SodiumLibrary.crypto_hash_sha512(array, message, (long)message.Length);
     return(array);
 }