Home
last modified time | relevance | path

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

/netbsd-src/sys/crypto/blake2/
H A Dblake2s.h39 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 Dblake2s.c153 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 Dfiles.blake2s1 # $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 DMakefile5 KMOD= blake2s
11 SRCS+= blake2s.c
/netbsd-src/external/bsd/libarchive/dist/libarchive/
H A Darchive_blake2s_ref.c267 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 Darchive_blake2.h181 …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 Dbuild.info3 blake2b.c blake2s.c m_blake2b.c m_blake2s.c
/netbsd-src/crypto/external/bsd/openssl.old/lib/libcrypto/
H A Dblake2.inc12 blake2s.c \
/netbsd-src/sys/rump/librump/rumpkern/
H A DMakefile.rumpkern167 SRCS+= blake2s.c
/netbsd-src/sys/modules/
H A DMakefile37 SUBDIR+= blake2s
/netbsd-src/sys/net/
H A Dif_wg.c117 #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 Dsubr_thmap.c336 struct blake2s B; in hash()
H A Dkern_sysctl.c97 #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 Dfiles230 include "crypto/blake2/files.blake2s"
1489 defpseudo wg: ifnet, blake2s, libsodium
/netbsd-src/crypto/external/bsd/openssl.old/dist/
H A DCHANGES1808 *) Add support for blake2b and blake2s