Home
last modified time | relevance | path

Searched refs:blake2s (Results 1 – 13 of 13) sorted by relevance

/external/python/cpython3/Doc/library/
Dhashlib.rst60 :func:`shake_128`, :func:`shake_256`, :func:`blake2b`, and :func:`blake2s`.
80 :func:`blake2b` and :func:`blake2s` were added.
373 single: blake2b, blake2s
402 .. function:: blake2s(data=b'', *, digest_size=32, key=b'', salt=b'', \
479 .. data:: blake2s.SALT_SIZE
485 .. data:: blake2s.PERSON_SIZE
491 .. data:: blake2s.MAX_KEY_SIZE
497 .. data:: blake2s.MAX_DIGEST_SIZE
510 :func:`blake2s`), then update it with the data by calling :meth:`~hash.update` on the
562 >>> from hashlib import blake2b, blake2s
[all …]
/external/python/cpython3/Modules/_blake2/impl/
Dblake2s.c186 …int blake2s( uint8_t *out, const void *in, const void *key, size_t outlen, size_t inlen, size_t ke…
381 int blake2s( uint8_t *out, const void *in, const void *key, size_t outlen, size_t inlen, size_t key… in blake2s() function
412 return blake2s( out, in, NULL, BLAKE2S_OUTBYTES, (size_t)inlen, 0 ); in crypto_hash()
Dblake2s-ref.c149 …int blake2s( uint8_t *out, const void *in, const void *key, size_t outlen, size_t inlen, size_t ke…
341 int blake2s( uint8_t *out, const void *in, const void *key, size_t outlen, size_t inlen, size_t key… in blake2s() function
Dblake2.h166 …BLAKE2_API int blake2s( uint8_t *out, const void *in, const void *key, size_t outlen, size_t inlen…
/external/python/cpython3/Modules/_blake2/
Dblake2module.h23 #define blake2s PyBlake2_blake2s macro
/external/python/cpython3/Lib/
Dhashlib.py105 cache['blake2s'] = _blake2.blake2s
/external/bazelbuild-rules_go/tests/integration/popular_repos/
DREADME.rst21 * @org_golang_x_crypto//blake2s:blake2s_test
DBUILD.bazel29 "@org_golang_x_crypto//blake2s:blake2s_test",
/external/python/cpython3/Lib/test/
Dtest_hashlib.py797 self.check_blake2(hashlib.blake2s, 8, 8, 32, 32, (1<<48)-1)
801 self.blake2_rfc7693(hashlib.blake2s, b2s_md_len, b2s_in_len),
/external/python/cpython3/
DMakefile.pre.in902 # blake2s is auto-generated from blake2b
3124blake2s-load-sse2.h $(srcdir)/Modules/_blake2/impl/blake2s-load-sse41.h $(srcdir)/Modules/_blake2/…
/external/python/cpython3/Misc/NEWS.d/
D3.6.0b1.rst912 Add BLAKE2 (blake2b and blake2s) to hashlib.
/external/python/cpython3/Doc/whatsnew/
D3.6.rst1097 and :func:`~hashlib.blake2s` are always available and support the full
D3.11.rst791 * :func:`hashlib.blake2b` and :func:`hashlib.blake2s` now prefer `libb2`_