Searched refs:HKDF (Results 1 - 7 of 7) sorted by relevance
/third_party/openssl/test/recipes/ |
H A D | 20-test_kdf.t | 25 { cmd => [qw{openssl kdf -keylen 10 -digest SHA256 -kdfopt key:secret -kdfopt salt:salt -kdfopt info:label HKDF}], 27 desc => 'HKDF SHA256' }, 51 { cmd => [qw{openssl kdf -keylen 10 -kdfopt digest:SHA256 -kdfopt key:secret -kdfopt salt:salt -kdfopt info:label HKDF}], 53 desc => 'HKDF SHA256' },
|
/third_party/node/deps/openssl/openssl/providers/implementations/kdfs/ |
H A D | hkdf.c | 49 static int HKDF(OSSL_LIB_CTX *libctx, const EVP_MD *evp_md, 63 /* Settable context parameters that are common across HKDF and the TLS KDF */ 176 return HKDF(libctx, md, ctx->salt, ctx->salt_len, in kdf_hkdf_derive() 371 * Refer to "HMAC-based Extract-and-Expand Key Derivation Function (HKDF)" 373 * "Cryptographic Extraction and Key Derivation: The HKDF Scheme" 377 * The scheme HKDF is specified as: 378 * HKDF(XTS, SKM, CTXinfo, L) = K(1) | K(2) | ... | K(t) 391 * HKDF-Extract(salt, IKM) -> PRK 393 * HKDF-Expand(PRK, info, L) -> OKM 395 static int HKDF(OSSL_LIB_CT function [all...] |
/third_party/openssl/providers/implementations/kdfs/ |
H A D | hkdf.c | 49 static int HKDF(OSSL_LIB_CTX *libctx, const EVP_MD *evp_md, 63 /* Settable context parameters that are common across HKDF and the TLS KDF */ 176 return HKDF(libctx, md, ctx->salt, ctx->salt_len, in kdf_hkdf_derive() 371 * Refer to "HMAC-based Extract-and-Expand Key Derivation Function (HKDF)" 373 * "Cryptographic Extraction and Key Derivation: The HKDF Scheme" 377 * The scheme HKDF is specified as: 378 * HKDF(XTS, SKM, CTXinfo, L) = K(1) | K(2) | ... | K(t) 391 * HKDF-Extract(salt, IKM) -> PRK 393 * HKDF-Expand(PRK, info, L) -> OKM 395 static int HKDF(OSSL_LIB_CT function [all...] |
/third_party/rust/crates/rust-openssl/openssl/src/ |
H A D | pkey_ctx.rs | 82 /// HKDF modes of operation. 89 /// for HKDF will perform an extract followed by an expand operation in one go. The derived key 565 /// Sets the digest used for HKDF derivation. 582 /// Sets the HKDF mode of operation. 586 /// WARNING: Although this API calls it a "mode", HKDF-Extract and HKDF-Expand are distinct 602 /// Sets the input material for HKDF generation as the "key". 606 /// the input keying material (IKM) for HKDF-Extract. If [`HkdfMode::EXPAND_ONLY`], it instead 607 /// specifies the pseudorandom key (PRK) for HKDF-Expand. 630 /// Sets the salt value for HKDF generatio [all...] |
H A D | pkey.rs | 92 pub const HKDF: Id = Id(ffi::EVP_PKEY_HKDF); consts
|
/third_party/node/deps/ngtcp2/ngtcp2/crypto/boringssl/ |
H A D | boringssl.c | 316 if (HKDF(dest, destlen, prf, secret, secretlen, salt, saltlen, info, in ngtcp2_crypto_hkdf()
|
/third_party/libcoap/src/ |
H A D | coap_oscore.c | 1792 TEXT_MAPPING(direct+HKDF-SHA-256, COSE_HKDF_ALG_HKDF_SHA_256), 1982 coap_log_warn("COSE: HKDF Algorithm %d not supported\n", in coap_oscore_init()
|
Completed in 10 milliseconds