HomeSort by relevance Sort by last modified time
    Searched refs:blake2s (Results 1 - 8 of 8) 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 ||
blake2.h 145 int blake2s( uint8_t *out, const void *in, const void *key, const uint8_t outlen, const uint64_t inlen, uint8_t keylen );
  /external/python/cpython3/Lib/
hashlib.py 14 md5(), sha1(), sha224(), sha256(), sha384(), sha512(), blake2b(), blake2s(),
59 'blake2b', 'blake2s',
93 elif name in ('blake2b', 'blake2s'):
96 cache['blake2s'] = _blake2.blake2s
117 if name in {'blake2b', 'blake2s'}:
142 if name in {'blake2b', 'blake2s'}:
  /prebuilts/go/darwin-x86/src/crypto/
crypto.go 39 BLAKE2s_256 // import golang.org/x/crypto/blake2s
  /prebuilts/go/linux-x86/src/crypto/
crypto.go 39 BLAKE2s_256 // import golang.org/x/crypto/blake2s
  /external/python/cpython3/Lib/test/
test_hashlib.py 77 'blake2b', 'blake2s',
102 algorithms.update({'blake2b', 'blake2s'})
148 add_builtin_constructor('blake2s')
305 self.check_no_unicode('blake2s')
373 self.check_blocksize_name('blake2s', 64, 32)
629 self.check_blake2(hashlib.blake2s, 8, 8, 32, 32, (1<<48)-1)
633 self.blake2_rfc7693(hashlib.blake2s, b2s_md_len, b2s_in_len),
638 self.check('blake2s', b"",
643 self.check('blake2s', b"abc",
648 for msg, key, md in read_vectors('blake2s')
    [all...]

Completed in 627 milliseconds