Searched refs:hkdf (Results 1 - 12 of 12) sorted by relevance
/third_party/libcoap/src/oscore/ |
H A D | oscore_crypto.c | 113 coap_bin_const_t *hkdf = NULL; in oscore_hkdf_expand() local 124 if (!oscore_hmac_hash(hmac_alg, prk, &data, &hkdf)) in oscore_hkdf_expand() 126 memcpy(&out_buffer[0], hkdf->s, hkdf->length); in oscore_hkdf_expand() 127 coap_delete_bin_const(hkdf); in oscore_hkdf_expand() 136 if (!oscore_hmac_hash(hmac_alg, prk, &data, &hkdf)) in oscore_hkdf_expand() 138 memcpy(&out_buffer[i * 32], hkdf->s, hkdf->length); in oscore_hkdf_expand() 139 coap_delete_bin_const(hkdf); in oscore_hkdf_expand()
|
/third_party/openssl/demos/kdf/ |
H A D | Makefile | 4 # LD_LIBRARY_PATH=../.. ./hkdf 10 all: hkdf pbkdf2 scrypt 15 hkdf: hkdf.o 22 $(RM) *.o hkdf pbkdf2 scrypt
|
/third_party/node/lib/internal/crypto/ |
H A D | hkdf.js | 101 function hkdf(hash, key, salt, info, length, callback) { function 139 const hkdfPromise = promisify(hkdf); 165 hkdf,
|
/third_party/node/benchmark/crypto/ |
H A D | hkdf.js | 6 hkdf, 36 hkdf(hash, key, salt, info, size, done);
|
/third_party/node/deps/openssl/openssl/providers/implementations/exchange/ |
H A D | kdf_exch.c | 77 KDF_NEWCTX(hkdf, "HKDF") 197 KDF_SETTABLE_CTX_PARAMS(hkdf, "HKDF") 214 KDF_KEYEXCH_FUNCTIONS(hkdf)
|
/third_party/openssl/providers/implementations/exchange/ |
H A D | kdf_exch.c | 77 KDF_NEWCTX(hkdf, "HKDF") 197 KDF_SETTABLE_CTX_PARAMS(hkdf, "HKDF") 214 KDF_KEYEXCH_FUNCTIONS(hkdf)
|
/third_party/mbedtls/library/ |
H A D | psa_crypto.c | 5488 mbedtls_free(operation->ctx.hkdf.info); in psa_key_derivation_abort() 5489 status = psa_mac_abort(&operation->ctx.hkdf.hmac); in psa_key_derivation_abort() 5574 static psa_status_t psa_key_derivation_hkdf_read(psa_hkdf_key_derivation_t *hkdf, in psa_key_derivation_hkdf_read() argument 5589 if (hkdf->state < HKDF_STATE_KEYED || in psa_key_derivation_hkdf_read() 5590 (!hkdf->info_set in psa_key_derivation_hkdf_read() 5597 hkdf->state = HKDF_STATE_OUTPUT; in psa_key_derivation_hkdf_read() 5601 uint8_t n = hash_length - hkdf->offset_in_block; in psa_key_derivation_hkdf_read() 5605 memcpy(output, hkdf->output_block + hkdf->offset_in_block, n); in psa_key_derivation_hkdf_read() 5608 hkdf in psa_key_derivation_hkdf_read() 6720 psa_hkdf_input(psa_hkdf_key_derivation_t *hkdf, psa_algorithm_t kdf_alg, psa_key_derivation_step_t step, const uint8_t *data, size_t data_length) psa_hkdf_input() argument [all...] |
H A D | Makefile | 139 hkdf.o \
|
/third_party/mbedtls/include/psa/ |
H A D | crypto_driver_contexts_key_derivation.h | 37 psa_hkdf_key_derivation_t MBEDTLS_PRIVATE(hkdf);
|
/third_party/node/lib/ |
H A D | crypto.js | 68 hkdf, 70 } = require('internal/crypto/hkdf'); 200 hkdf,
|
/third_party/node/deps/ngtcp2/ngtcp2/crypto/boringssl/ |
H A D | boringssl.c | 37 #include <openssl/hkdf.h>
|
/third_party/rust/crates/rust-openssl/openssl/src/ |
H A D | pkey_ctx.rs | 859 fn hkdf() { in hkdf() functions
|
Completed in 14 milliseconds