/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 368 .. function:: blake2b(data=b'', *, digest_size=64, key=b'', salt=b'', \ 449 .. data:: blake2b.SALT_SIZE 455 .. data:: blake2b.PERSON_SIZE 461 .. data:: blake2b.MAX_KEY_SIZE 467 .. data:: blake2b.MAX_DIGEST_SIZE 480 calling the appropriate constructor function (:func:`blake2b` or 485 >>> from hashlib import blake2b [all …]
|
/aosp_15_r20/external/python/cpython3/Modules/_blake2/impl/ |
D | blake2b.c | 200 …int blake2b( uint8_t *out, const void *in, const void *key, size_t outlen, size_t inlen, size_t ke… 403 int blake2b( uint8_t *out, const void *in, const void *key, size_t outlen, size_t inlen, size_t key… in blake2b() function 434 return blake2b( out, in, NULL, BLAKE2B_OUTBYTES, inlen, 0 ); in crypto_hash()
|
D | blake2b-ref.c | 156 …int blake2b( uint8_t *out, const void *in, const void *key, size_t outlen, size_t inlen, size_t ke… 351 int blake2b( uint8_t *out, const void *in, const void *key, size_t outlen, size_t inlen, size_t key… in blake2b() function
|
D | blake2.h | 167 …BLAKE2_API int blake2b( 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 | 11 #define blake2b PyBlake2_blake2b macro
|
/aosp_15_r20/external/cronet/third_party/icu/scripts/ |
H A D | icuhash.py | 32 digest = hashlib.blake2b(page, digest_size=HASH_SIZE).digest()
|
/aosp_15_r20/external/cronet/third_party/boringssl/src/crypto/blake2/ |
H A D | blake2b256_tests.txt | 21 # "golang.org/x/crypto/blake2b" 31 # h, err := blake2b.New256(nil)
|
/aosp_15_r20/external/boringssl/src/crypto/blake2/ |
H A D | blake2b256_tests.txt | 21 # "golang.org/x/crypto/blake2b" 31 # h, err := blake2b.New256(nil)
|
/aosp_15_r20/external/python/cpython3/Lib/ |
D | hashlib.py | 104 cache['blake2b'] = _blake2.blake2b
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567b/python3/lib/python3.11/ |
D | hashlib.py | 104 cache['blake2b'] = _blake2.blake2b
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r522817/python3/lib/python3.11/ |
D | hashlib.py | 104 cache['blake2b'] = _blake2.blake2b
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r530567/python3/lib/python3.11/ |
D | hashlib.py | 104 cache['blake2b'] = _blake2.blake2b
|
/aosp_15_r20/prebuilts/clang/host/linux-x86/clang-r536225/python3/lib/python3.11/ |
D | hashlib.py | 104 cache['blake2b'] = _blake2.blake2b
|
/aosp_15_r20/prebuilts/build-tools/common/py3-stdlib/ |
H A D | hashlib.py | 104 cache['blake2b'] = _blake2.blake2b
|
/aosp_15_r20/kernel/prebuilts/6.1/x86_64/system_dlkm_staging/lib/modules/6.1.84-android14-11-gf3437db87063-ab12109370/ |
D | modules.builtin.modinfo | 1 …blake2b-160blake2b_generic.alias=crypto-blake2b-160blake2b_generic.alias=blake2b-160-genericbla…
|
/aosp_15_r20/kernel/prebuilts/6.6/x86_64/system_dlkm_staging/lib/modules/6.6.57-android15-8-g8b48c9979699-ab12748506/ |
D | modules.builtin.modinfo | 2 …blake2b-160blake2b_generic.alias=crypto-blake2b-160blake2b_generic.alias=blake2b-160-genericbla…
|
/aosp_15_r20/device/google/cuttlefish/shared/ |
D | BoardConfig.mk | 241 TARGET_AVB_SYSTEM_EXT_HASHTREE_ALGORITHM ?= blake2b-256
|
/aosp_15_r20/external/bazelbuild-rules_go/tests/integration/popular_repos/ |
H A D | README.rst | 20 * @org_golang_x_crypto//blake2b:blake2b_test
|
H A D | BUILD.bazel | 28 "@org_golang_x_crypto//blake2b:blake2b_test",
|
/aosp_15_r20/external/python/cpython3/Lib/test/ |
D | test_hashlib.py | 740 self.check_blake2(hashlib.blake2b, 16, 16, 64, 64, (1<<64)-1) 744 self.blake2_rfc7693(hashlib.blake2b, b2b_md_len, b2b_in_len),
|
/aosp_15_r20/external/python/cpython3/ |
D | Makefile.pre.in | 726 # blake2s is auto-generated from blake2b 2567 …blake2b-load-sse2.h $(srcdir)/Modules/_blake2/impl/blake2b-load-sse41.h $(srcdir)/Modules/_blake2/…
|
/aosp_15_r20/external/python/cpython3/Doc/tools/ |
D | susp-ignored.csv | 137 library/hashlib,,:LEAF,"h00 = blake2b(buf[0:LEAF_SIZE], fanout=FANOUT, depth=DEPTH,"
|
/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/external/avb/ |
H A D | README.md | 446 Valid values for `HASH_ALG` above include `sha1`, `sha256`, and `blake2b-256`.
|
/aosp_15_r20/external/python/cpython3/Doc/whatsnew/ |
D | 3.6.rst | 1096 BLAKE2 hash functions were added to the module. :func:`~hashlib.blake2b`
|