/freebsd/sys/modules/blake2/ |
H A D | Makefile | 21 SRCS += blake2b-load-sse2.h 22 SRCS += blake2b-load-sse41.h 23 SRCS += blake2b-round.h 31 SRCS_IN += blake2b-sse2.c 32 SRCS_IN += blake2b-ssse3.c 33 SRCS_IN += blake2b-sse41.c 34 SRCS_IN += blake2b-avx.c 35 SRCS_IN += blake2b-xop.c 44 CFLAGS.blake2b-sse2.c += -DSUFFIX=_sse2 -msse2 47 CFLAGS.blake2b-ssse3.c += -DSUFFIX=_ssse3 -msse2 -mssse3 [all …]
|
/freebsd/sys/contrib/libsodium/src/libsodium/ |
H A D | Makefile.am | 21 crypto_generichash/blake2b/generichash_blake2.c \ 22 crypto_generichash/blake2b/ref/blake2.h \ 23 crypto_generichash/blake2b/ref/blake2b-compress-ref.c \ 24 crypto_generichash/blake2b/ref/blake2b-load-sse2.h \ 25 crypto_generichash/blake2b/ref/blake2b-load-sse41.h \ 26 crypto_generichash/blake2b/ref/blake2b-load-avx2.h \ 27 crypto_generichash/blake2b/ref/blake2b-ref.c \ 28 crypto_generichash/blake2b/ref/generichash_blake2b.c \ 34 crypto_kdf/blake2b/kdf_blake2b.c \ 51 crypto_pwhash/argon2/blake2b-long.c \ [all …]
|
/freebsd/sys/contrib/libb2/ |
H A D | blake2b.c | 197 #define blake2b BLAKE2_IMPL_NAME(blake2b) macro 207 …int blake2b( uint8_t *out, const void *in, const void *key, size_t outlen, size_t inlen, size_t ke… 410 int blake2b( uint8_t *out, const void *in, const void *key, size_t outlen, size_t inlen, size_t key… in blake2b() function 441 return blake2b( out, in, NULL, BLAKE2B_OUTBYTES, inlen, 0 ); in crypto_hash()
|
H A D | blake2b-ref.c | 153 #define blake2b BLAKE2_IMPL_NAME(blake2b) macro 163 …int blake2b( uint8_t *out, const void *in, const void *key, size_t outlen, size_t inlen, size_t ke… 358 int blake2b( uint8_t *out, const void *in, const void *key, size_t outlen, size_t inlen, size_t key… in blake2b() function
|
H A D | blake2.h | 167 …BLAKE2_API int blake2b( uint8_t *out, const void *in, const void *key, size_t outlen, size_t inlen… 174 return blake2b( out, in, key, outlen, inlen, keylen ); in blake2()
|
H A D | blake2-dispatch.c | 507 BLAKE2_API int blake2b( uint8_t *out, const void *in, const void *key, size_t outlen, size_t inlen,… in blake2b() function
|
/freebsd/sys/contrib/libsodium/src/libsodium/crypto_generichash/blake2b/ref/ |
H A D | blake2.h | 35 #define blake2b crypto_generichash_blake2b__blake2b macro 90 int blake2b(uint8_t *out, const void *in, const void *key, const uint8_t outlen,
|
H A D | generichash_blake2b.c | 22 return blake2b((uint8_t *) out, in, key, (uint8_t) outlen, (uint64_t) inlen, in crypto_generichash_blake2b()
|
H A D | blake2b-ref.c | 333 blake2b(uint8_t *out, const void *in, const void *key, const uint8_t outlen, in blake2b() function
|
/freebsd/sys/modules/crypto/ |
H A D | Makefile | 52 SRCS += blake2b-ref.c 55 CFLAGS.blake2b-ref.c += -I${SRCTOP}/sys/crypto/blake2 -DSUFFIX=_ref 58 CWARNFLAGS.blake2b-ref.c += -Wno-cast-qual -Wno-unused-function
|
/freebsd/sys/contrib/libsodium/ |
H A D | AUTHORS | 65 crypto_generichash/blake2b Jean-Philippe Aumasson
|
/freebsd/contrib/libarchive/libarchive/ |
H A D | archive_blake2.h | 182 …int blake2b( void *out, size_t outlen, const void *in, size_t inlen, const void *key, size_t keyle…
|
/freebsd/sys/conf/ |
H A D | files | 686 contrib/libb2/blake2b-ref.c optional crypto | !random_loadable random_fenestrasx \
|
/freebsd/crypto/openssl/ |
H A D | CHANGES.md | 4265 * Add support for blake2b and blake2s
|