Пример #1
0
 public static int crypto_generichash(
     byte * @out,
     UIntPtr outlen,
     byte * @in,
     ulong inlen,
     byte *key,
     UIntPtr keylen)
 {
     return(_is32bits
         ? X86.crypto_generichash(
                @out, outlen, @in, inlen, key, keylen)
         : X64.crypto_generichash(
                @out, outlen, @in, inlen, key, keylen));
 }