OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:blake2s
(Results
1 - 3
of
3
) sorted by null
/external/python/cpython3/Modules/_blake2/
blake2ns.h
19
#define
blake2s
PyBlake2_blake2s
macro
/external/python/cpython3/Modules/_blake2/impl/
blake2s-ref.c
165
/* Sequential
blake2s
initialization */
343
int
blake2s
( uint8_t *out, const void *in, const void *key, const uint8_t outlen, const uint64_t inlen, uint8_t keylen )
function
375
return
blake2s
( out, in, NULL, BLAKE2S_OUTBYTES, inlen, 0 );
397
blake2s
( hash, buf, key, BLAKE2S_OUTBYTES, i, BLAKE2S_KEYBYTES );
blake2s.c
40
#include "
blake2s
-round.h"
189
/* Some sort of default parameter block initialization, for sequential
blake2s
*/
367
int
blake2s
( uint8_t *out, const void *in, const void *key, const uint8_t outlen, const uint64_t inlen, uint8_t keylen )
function
399
return
blake2s
( out, in, NULL, BLAKE2S_OUTBYTES, inlen, 0 );
422
if(
blake2s
( hash, buf, key, BLAKE2S_OUTBYTES, i, BLAKE2S_KEYBYTES ) < 0 ||
Completed in 476 milliseconds