HomeSort by relevance Sort by last modified time
    Searched defs:blake2b (Results 1 - 3 of 3) sorted by null

  /external/python/cpython3/Modules/_blake2/
blake2ns.h 7 #define blake2b PyBlake2_blake2b macro
  /external/python/cpython3/Modules/_blake2/impl/
blake2b-ref.c 353 int blake2b( uint8_t *out, const void *in, const void *key, const uint8_t outlen, const uint64_t inlen, uint8_t keylen ) function
385 return blake2b( out, in, NULL, BLAKE2B_OUTBYTES, inlen, 0 );
407 blake2b( hash, buf, key, BLAKE2B_OUTBYTES, i, BLAKE2B_KEYBYTES );
blake2b.c 42 #include "blake2b-round.h"
202 /* Some sort of default parameter block initialization, for sequential blake2b */
386 int blake2b( uint8_t *out, const void *in, const void *key, const uint8_t outlen, const uint64_t inlen, uint8_t keylen ) function
418 return blake2b( out, in, NULL, BLAKE2B_OUTBYTES, inlen, 0 );
440 blake2b( hash, buf, key, BLAKE2B_OUTBYTES, i, BLAKE2B_KEYBYTES );

Completed in 52 milliseconds