OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:HKDF
(Results
1 - 11
of
11
) sorted by relevancy
/src/crypto/external/apache2/openssl/dist/test/recipes/30-test_evp_data/
evppkey_kdf_hkdf.txt
14
Title =
HKDF
tests (from RFC5869 test vectors) using PKEYKDF
16
PKEYKDF =
HKDF
23
PKEYKDF =
HKDF
30
PKEYKDF =
HKDF
37
PKEYKDF =
HKDF
44
PKEYKDF =
HKDF
51
PKEYKDF =
HKDF
58
PKEYKDF =
HKDF
65
PKEYKDF =
HKDF
73
PKEYKDF =
HKDF
[
all
...]
evpkdf_hkdf.txt
14
Title =
HKDF
tests (from RFC5869 test vectors)
16
KDF =
HKDF
23
KDF =
HKDF
30
KDF =
HKDF
37
KDF =
HKDF
44
KDF =
HKDF
51
KDF =
HKDF
58
KDF =
HKDF
65
KDF =
HKDF
73
KDF =
HKDF
[
all
...]
/src/crypto/external/bsd/openssl/dist/test/recipes/30-test_evp_data/
evpkdf_hkdf.txt
14
Title =
HKDF
tests (from RFC5869 test vectors)
16
KDF =
HKDF
23
KDF =
HKDF
30
KDF =
HKDF
37
KDF =
HKDF
44
KDF =
HKDF
51
KDF =
HKDF
58
KDF =
HKDF
65
KDF =
HKDF
73
KDF =
HKDF
[
all
...]
evppkey_kdf_hkdf.txt
14
Title =
HKDF
tests (from RFC5869 test vectors) using PKEYKDF
16
PKEYKDF =
HKDF
23
PKEYKDF =
HKDF
30
PKEYKDF =
HKDF
37
PKEYKDF =
HKDF
44
PKEYKDF =
HKDF
51
PKEYKDF =
HKDF
58
PKEYKDF =
HKDF
65
PKEYKDF =
HKDF
73
PKEYKDF =
HKDF
[
all
...]
/src/crypto/external/bsd/openssl.old/dist/test/recipes/30-test_evp_data/
evpkdf.txt
72
Title =
HKDF
tests (from RFC5869 test vectors)
74
KDF =
HKDF
81
KDF =
HKDF
88
KDF =
HKDF
95
KDF =
HKDF
102
KDF =
HKDF
109
KDF =
HKDF
116
KDF =
HKDF
123
KDF =
HKDF
131
KDF =
HKDF
[
all
...]
/src/crypto/external/bsd/openssl.old/dist/crypto/kdf/
hkdf.c
20
static unsigned char *
HKDF
(const EVP_MD *evp_md,
206
return
HKDF
(kctx->md, kctx->salt, kctx->salt_len, kctx->key,
257
static unsigned char *
HKDF
(const EVP_MD *evp_md,
/src/crypto/external/apache2/openssl/dist/test/recipes/
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' },
/src/crypto/external/bsd/openssl/dist/test/recipes/
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' },
/src/crypto/external/bsd/openssl/dist/providers/implementations/kdfs/
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,
379
* Refer to "HMAC-based Extract-and-Expand Key Derivation Function (
HKDF
)"
381
* "Cryptographic Extraction and Key Derivation: The
HKDF
Scheme"
385
* The scheme
HKDF
is specified as:
386
*
HKDF
(XTS, SKM, CTXinfo, L) = K(1) | K(2) | ... | K(t)
399
*
HKDF
-Extract(salt, IKM) -> PRK
401
*
HKDF
-Expand(PRK, info, L) -> OKM
403
static int
HKDF
(OSSL_LIB_CTX *libctx, const EVP_MD *evp_md
[
all
...]
/src/external/bsd/libfido2/dist/src/
ecdh.c
11
#include <openssl/
hkdf
.h>
28
HKDF
(key, SHA256_DIGEST_LENGTH, md, secret->ptr, secret->len, salt,
97
/* use two instances of
hkdf
-sha256 on the resulting secret */
103
fido_log_debug("%s:
hkdf
", __func__);
/src/crypto/external/apache2/openssl/dist/providers/implementations/kdfs/
hkdf.c
54
static int
HKDF
(OSSL_LIB_CTX *libctx, const EVP_MD *evp_md,
68
/* Settable context parameters that are common across
HKDF
and the TLS KDF */
77
/* Gettable context parameters that are common across
HKDF
and the TLS KDF */
203
libctx, "
HKDF
", "Key size",
240
return
HKDF
(libctx, md, ctx->salt, ctx->salt_len,
430
* Refer to "HMAC-based Extract-and-Expand Key Derivation Function (
HKDF
)"
432
* "Cryptographic Extraction and Key Derivation: The
HKDF
Scheme"
436
* The scheme
HKDF
is specified as:
437
*
HKDF
(XTS, SKM, CTXinfo, L) = K(1) | K(2) | ... | K(t)
450
*
HKDF
-Extract(salt, IKM) -> PR
[
all
...]
Completed in 34 milliseconds
Indexes created Sun Mar 01 05:31:48 UTC 2026