/netbsd-src/sys/crypto/blake2/ |
H A D | blake2s.h | 39 struct blake2s { struct 50 void blake2s_init(struct blake2s *, size_t, const void *, size_t); argument 51 void blake2s_update(struct blake2s *, const void *, size_t); 52 void blake2s_final(struct blake2s *, void *); 53 void blake2s(void *, size_t, const void *, size_t, const void *, size_t);
|
H A D | blake2s.c | 153 blake2s_init(struct blake2s *B, size_t dlen, const void *key, size_t keylen) in blake2s_init() 194 blake2s_update(struct blake2s *B, const void *buf, size_t len) in blake2s_update() 232 blake2s_final(struct blake2s *B, void *digest) in blake2s_final() 265 blake2s(void *digest, size_t dlen, const void *key, size_t keylen, in blake2s() function 268 struct blake2s ctx; in blake2s() 305 struct blake2s ctx; in blake2s_selftest() 312 blake2s(d, dlen[di], NULL, 0, m, mlen[mi]); in blake2s_selftest() 316 blake2s(d, dlen[di], k, dlen[di], m, mlen[mi]); in blake2s_selftest() 331 MODULE(MODULE_CLASS_MISC, blake2s, NULL);
|
H A D | files.blake2s | 1 # $NetBSD: files.blake2s,v 1.2 2020/08/26 22:56:55 christos Exp $ 3 define blake2s 5 file crypto/blake2/blake2s.c
|
/netbsd-src/sys/modules/blake2s/ |
H A D | Makefile | 5 KMOD= blake2s 11 SRCS+= blake2s.c
|
/netbsd-src/external/bsd/libarchive/dist/libarchive/ |
H A D | archive_blake2s_ref.c | 267 int blake2s( void *out, size_t outlen, const void *in, size_t inlen, const void *key, size_t keylen… in blake2s() function 299 return blake2s( out, BLAKE2S_OUTBYTES, in, inlen, NULL, 0 ); in crypto_hash() 322 blake2s( hash, BLAKE2S_OUTBYTES, buf, i, key, BLAKE2S_KEYBYTES ); in main()
|
H A D | archive_blake2.h | 181 …int blake2s( void *out, size_t outlen, const void *in, size_t inlen, const void *key, size_t keyle…
|
/netbsd-src/crypto/external/bsd/openssl.old/dist/crypto/blake2/ |
H A D | build.info | 3 blake2b.c blake2s.c m_blake2b.c m_blake2s.c
|
/netbsd-src/crypto/external/bsd/openssl.old/lib/libcrypto/ |
H A D | blake2.inc | 12 blake2s.c \
|
/netbsd-src/sys/rump/librump/rumpkern/ |
H A D | Makefile.rumpkern | 167 SRCS+= blake2s.c
|
/netbsd-src/sys/modules/ |
H A D | Makefile | 37 SUBDIR+= blake2s
|
/netbsd-src/sys/net/ |
H A D | if_wg.c | 117 #include <crypto/blake2/blake2s.h> 998 struct blake2s state; in wg_algo_dh() 1000 blake2s(ckey, WG_CHAINING_KEY_LEN, NULL, 0, in wg_algo_dh() 1019 struct blake2s state; in wg_algo_hmac() 1033 struct blake2s state; in wg_algo_hmac() 1048 struct blake2s state; in wg_algo_kdf() 1068 struct blake2s state; in wg_algo_kdf() 1112 struct blake2s state; in wg_algo_aead_enc() 1580 blake2s(&h_min, 1, NULL, 0, &now_le, sizeof(now_le)); in wg_handle_msg_init() 1581 blake2s(h_loca in wg_handle_msg_init() [all...] |
/netbsd-src/sys/kern/ |
H A D | subr_thmap.c | 336 struct blake2s B; in hash()
|
H A D | kern_sysctl.c | 97 #include <crypto/blake2/blake2s.h> 2856 blake2s(d, ds, address_key, sizeof(address_key), s, ss); in hash_value()
|
/netbsd-src/sys/conf/ |
H A D | files | 230 include "crypto/blake2/files.blake2s" 1489 defpseudo wg: ifnet, blake2s, libsodium
|
/netbsd-src/crypto/external/bsd/openssl.old/dist/ |
H A D | CHANGES | 1808 *) Add support for blake2b and blake2s
|