Searched refs:HKDF (Results 1 – 24 of 24) sorted by relevance
/openssl/test/recipes/30-test_evp_data/ |
H A D | evppkey_kdf_hkdf.txt | 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 81 PKEYKDF = HKDF [all …]
|
H A D | evpkdf_hkdf.txt | 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 81 KDF = HKDF [all …]
|
/openssl/doc/man7/ |
H A D | EVP_KDF-HKDF.pod | 5 EVP_KDF-HKDF - The HKDF EVP_KDF implementation 9 Support for computing the B<HKDF> KDF through the B<EVP_KDF> API. 11 The EVP_KDF-HKDF algorithm implements the HKDF key derivation function. 12 HKDF follows the "extract-then-expand" paradigm, where the KDF logically 22 "HKDF" is the name for this implementation; it 45 this should be more than enough for any normal use of HKDF. 49 This parameter sets the mode for the HKDF operation. 57 up for HKDF will perform an extract followed by an expand operation in one go. 111 A context for HKDF can be obtained by calling: 113 EVP_KDF *kdf = EVP_KDF_fetch(NULL, "HKDF", NULL); [all …]
|
H A D | EVP_KDF-TLS13_KDF.pod | 9 Support for computing the TLS 1.3 version of the B<HKDF> KDF through 12 The EVP_KDF-TLS13_KDF algorithm implements the HKDF key derivation function 121 It does not support all the options and capabilities that HKDF does. 153 L<EVP_KDF-HKDF(7)>
|
H A D | OSSL_PROVIDER-default.pod | 126 =item HKDF, see L<EVP_KDF-HKDF(7)> 172 =item HKDF 254 =item HKDF
|
H A D | OSSL_PROVIDER-FIPS.pod | 109 =item HKDF, see L<EVP_KDF-HKDF(7)> 145 =item HKDF 223 =item HKDF 392 =item "HKDF" (B<OSSL_SELF_TEST_DESC_KDF_HKDF>)
|
H A D | EVP_KEM-EC.pod | 28 recipient public key. A HKDF operation using the keymaterial and a kem context
|
H A D | EVP_KEM-X25519.pod | 29 supplied recipient public key. A HKDF operation using the keymaterial and a kem
|
H A D | provider-kdf.pod | 244 Sets the prefix string using by the TLS 1.3 version of HKDF in the 249 Sets the label string using by the TLS 1.3 version of HKDF in the 254 Sets the context string using by the TLS 1.3 version of HKDF in the
|
H A D | fips_module.pod | 489 in L<EVP_KDF-HKDF(7)/Supported parameters>. 545 See relevant KDF documentation e.g. L<EVP_KDF-HKDF(7)/Supported parameters>
|
H A D | ossl-guide-migration.pod | 203 (scrypt, TLS1 PRF and HKDF) may be slower as they use an EVP_KDF bridge
|
/openssl/doc/man3/ |
H A D | EVP_PKEY_CTX_set_hkdf_md.pod | 29 The EVP_PKEY_HKDF algorithm implements the HKDF key derivation function. 30 HKDF follows the "extract-then-expand" paradigm, where the KDF logically 36 EVP_PKEY_CTX_set_hkdf_mode() sets the mode for the HKDF operation. There 44 up for HKDF will perform an extract followed by an expand operation in one go. 71 EVP_PKEY_CTX_set_hkdf_md() sets the message digest associated with the HKDF. 85 HKDF also supports string based control operations via 98 A context for HKDF can be obtained by calling: 103 should be more than enough for any normal use of HKDF. 105 The output length of an HKDF expand operation is specified via the length 108 to obtain the requisite length is not meaningful with HKDF in any mode that [all …]
|
H A D | EVP_KDF.pod | 232 Some KDF implementations, such as L<EVP_KDF-HKDF(7)>, take an 'info' parameter
|
/openssl/doc/man1/ |
H A D | openssl-kdf.pod.in | 112 Some KDF implementations, such as L<EVP_KDF-HKDF(7)>, take an 'info' parameter 143 The supported algorithms names include TLS1-PRF, HKDF, SSKDF, PBKDF2, 155 Use HKDF to create a hex-encoded derived key from a secret key, salt and info: 158 -kdfopt salt:salt -kdfopt info:label HKDF 210 L<EVP_KDF-HKDF(7)>,
|
H A D | openssl-fipsinstall.pod.in | 241 HKDF. 305 deriving a key by HKDF.
|
H A D | openssl-pkeyutl.pod.in | 222 at present B<TLS1-PRF> and B<HKDF>.
|
/openssl/providers/implementations/kdfs/ |
H A D | hkdf.c | 54 static int HKDF(OSSL_LIB_CTX *libctx, const EVP_MD *evp_md, 240 return HKDF(libctx, md, ctx->salt, ctx->salt_len, in kdf_hkdf_derive() 455 static int HKDF(OSSL_LIB_CTX *libctx, const EVP_MD *evp_md, in HKDF() function
|
/openssl/include/openssl/ |
H A D | core_names.h.in | 68 # define OSSL_KDF_NAME_HKDF "HKDF"
|
/openssl/doc/designs/ |
H A D | fips_indicator.md | 268 - HMAC Which applies to all algorithms that use HMAC also (e.g. HKDF, SSKDF, KBKDF) 298 - HKDF
|
H A D | xof.md | 126 The terms extract and expand are used by HKDF so I think this name would be
|
/openssl/doc/ |
H A D | build.info | 4542 DEPEND[html/man7/EVP_KDF-HKDF.html]=man7/EVP_KDF-HKDF.pod 4543 GENERATE[html/man7/EVP_KDF-HKDF.html]=man7/EVP_KDF-HKDF.pod 4544 DEPEND[man/man7/EVP_KDF-HKDF.7]=man7/EVP_KDF-HKDF.pod 4545 GENERATE[man/man7/EVP_KDF-HKDF.7]=man7/EVP_KDF-HKDF.pod 5087 html/man7/EVP_KDF-HKDF.html \ 5234 man/man7/EVP_KDF-HKDF.7 \
|
/openssl/crypto/objects/ |
H A D | objects.txt | 1762 # NID for HKDF 1763 : HKDF : hkdf
|
/openssl/ |
H A D | NEWS.md | 559 EVP_KDF bridge. Supported KDFs are: HKDF, KBKDF, KRB5 KDF, PBKDF2, 824 * HKDF support.
|
H A D | CHANGES.md | 763 for the HKDF algorithm but also for SSKDF and X9.63 KDF algorithms. 3270 (scrypt, TLS1 PRF and HKDF). The low-level KDF functions for PBKDF2 5273 * Add support for HKDF.
|
Completed in 81 milliseconds