/aosp_15_r20/external/python/cpython3/Doc/library/ |
D | hashlib.rst | 68 :func:`sha512`, :func:`blake2b`, and :func:`blake2s`. 81 :func:`blake2b` and :func:`blake2s` were added. 344 single: blake2b, blake2s 373 .. function:: blake2s(data=b'', *, digest_size=32, key=b'', salt=b'', \ 450 .. data:: blake2s.SALT_SIZE 456 .. data:: blake2s.PERSON_SIZE 462 .. data:: blake2s.MAX_KEY_SIZE 468 .. data:: blake2s.MAX_DIGEST_SIZE 481 :func:`blake2s`), then update it with the data by calling :meth:`update` on the 532 >>> from hashlib import blake2b, blake2s [all …]
|
/aosp_15_r20/external/python/cpython3/Modules/_blake2/impl/ |
D | blake2s.c | 186 …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()
|
D | blake2s-ref.c | 149 …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
|
D | blake2.h | 166 …BLAKE2_API int blake2s( uint8_t *out, const void *in, const void *key, size_t outlen, size_t inlen…
|
/aosp_15_r20/external/python/cpython3/Modules/_blake2/ |
D | blake2module.h | 23 #define blake2s PyBlake2_blake2s macro
|
/aosp_15_r20/external/python/cpython3/Lib/ |
D | hashlib.py | 105 cache['blake2s'] = _blake2.blake2s
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/lib/python3.11/ |
D | hashlib.py | 105 cache['blake2s'] = _blake2.blake2s
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/lib/python3.11/ |
D | hashlib.py | 105 cache['blake2s'] = _blake2.blake2s
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/lib/python3.11/ |
D | hashlib.py | 105 cache['blake2s'] = _blake2.blake2s
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/lib/python3.11/ |
D | hashlib.py | 105 cache['blake2s'] = _blake2.blake2s
|
/aosp_15_r20/prebuilts/build-tools/common/py3-stdlib/ |
H A D | hashlib.py | 105 cache['blake2s'] = _blake2.blake2s
|
/aosp_15_r20/kernel/tests/tools/ |
H A D | coverage_howto.md | 77 arch/x86/crypto/blake2s-glue.c |50.0% 28|50.0% 2|16.7% 30
|
/aosp_15_r20/external/bazelbuild-rules_go/tests/integration/popular_repos/ |
H A D | README.rst | 21 * @org_golang_x_crypto//blake2s:blake2s_test
|
H A D | BUILD.bazel | 29 "@org_golang_x_crypto//blake2s:blake2s_test",
|
/aosp_15_r20/external/python/cpython3/Lib/test/ |
D | test_hashlib.py | 785 self.check_blake2(hashlib.blake2s, 8, 8, 32, 32, (1<<48)-1) 789 self.blake2_rfc7693(hashlib.blake2s, b2s_md_len, b2s_in_len),
|
/aosp_15_r20/external/python/cpython3/ |
D | Makefile.pre.in | 726 # blake2s is auto-generated from blake2b 2567 …blake2s-load-sse2.h $(srcdir)/Modules/_blake2/impl/blake2s-load-sse41.h $(srcdir)/Modules/_blake2/…
|
/aosp_15_r20/external/python/cpython3/Misc/NEWS.d/ |
D | 3.6.0b1.rst | 912 Add BLAKE2 (blake2b and blake2s) to hashlib.
|
/aosp_15_r20/kernel/prebuilts/mainline/x86_64/system_dlkm_staging/lib/modules/5.18.0-rc5-mainline-10891-gbbe44ba33044-ab8548111/ |
D | modules.builtin | 12 kernel/arch/x86/crypto/blake2s-x86_64.ko
|
/aosp_15_r20/external/python/cpython3/Doc/whatsnew/ |
D | 3.6.rst | 1097 and :func:`~hashlib.blake2s` are always available and support the full
|
D | 3.11.rst | 775 * :func:`hashlib.blake2b` and :func:`hashlib.blake2s` now prefer `libb2`_
|