Differences From Artifact [dc9825f995]:
- File blake2b/blake2-nacl.c — part of check-in [1f76e42a02] at 2018-07-02 06:41:42 on branch trunk — Restructuring to get rid of SUPERCOP reference, it is incorrect (user: rkeene, size: 199) [annotate] [blame] [check-ins using]
To Artifact [41e5cf5dd8]:
- File build/blake2b/blake2-nacl.c — part of check-in [4168b04669] at 2018-07-02 07:20:44 on branch trunk — Moved our patchwork to its own internal directories in preparation for a release cleanup (user: rkeene, size: 205) [annotate] [blame] [check-ins using]
1 | #if defined(NACL_ED25519_BLAKE2B) | | | 1 2 3 4 5 6 | #if defined(NACL_ED25519_BLAKE2B) int crypto_hash_blake2b( unsigned char *out, const unsigned char *in, unsigned long long inlen ) { return blake2b( out, BLAKE2B_OUTBYTES, in, inlen, NULL, 0 ); } #endif |