| /freebsd/crypto/openssl/include/openssl/ |
| H A D | kdf.h | 28 int EVP_KDF_up_ref(EVP_KDF *kdf); 29 void EVP_KDF_free(EVP_KDF *kdf); 30 EVP_KDF *EVP_KDF_fetch(OSSL_LIB_CTX *libctx, const char *algorithm, 33 EVP_KDF_CTX *EVP_KDF_CTX_new(EVP_KDF *kdf); 36 const char *EVP_KDF_get0_description(const EVP_KDF *kdf); 37 int EVP_KDF_is_a(const EVP_KDF *kdf, const char *name); 38 const char *EVP_KDF_get0_name(const EVP_KDF *kdf); 39 const OSSL_PROVIDER *EVP_KDF_get0_provider(const EVP_KDF *kdf); 40 const EVP_KDF *EVP_KDF_CTX_kdf(EVP_KDF_CTX *ctx); 46 int EVP_KDF_get_params(EVP_KDF *kdf, OSSL_PARAM params[]); [all …]
|
| /freebsd/crypto/openssl/crypto/evp/ |
| H A D | kdf_meth.c | 22 EVP_KDF *kdf = (EVP_KDF *)vkdf; in evp_kdf_up_ref() 31 EVP_KDF *kdf = (EVP_KDF *)vkdf; in evp_kdf_free() 48 EVP_KDF *kdf = NULL; in evp_kdf_new() 63 EVP_KDF *kdf = NULL; in evp_kdf_from_algorithm() 159 EVP_KDF *EVP_KDF_fetch(OSSL_LIB_CTX *libctx, const char *algorithm, in EVP_KDF_fetch() 167 int EVP_KDF_up_ref(EVP_KDF *kdf) in EVP_KDF_up_ref() 172 void EVP_KDF_free(EVP_KDF *kdf) in EVP_KDF_free() 177 const OSSL_PARAM *EVP_KDF_gettable_params(const EVP_KDF *kdf) in EVP_KDF_gettable_params() 184 const OSSL_PARAM *EVP_KDF_gettable_ctx_params(const EVP_KDF *kdf) in EVP_KDF_gettable_ctx_params() 194 const OSSL_PARAM *EVP_KDF_settable_ctx_params(const EVP_KDF *kdf) in EVP_KDF_settable_ctx_params() [all …]
|
| H A D | kdf_lib.c | 23 EVP_KDF_CTX *EVP_KDF_CTX_new(EVP_KDF *kdf) in EVP_KDF_CTX_new() 81 int evp_kdf_get_number(const EVP_KDF *kdf) in evp_kdf_get_number() 86 const char *EVP_KDF_get0_name(const EVP_KDF *kdf) in EVP_KDF_get0_name() 91 const char *EVP_KDF_get0_description(const EVP_KDF *kdf) in EVP_KDF_get0_description() 96 int EVP_KDF_is_a(const EVP_KDF *kdf, const char *name) in EVP_KDF_is_a() 101 const OSSL_PROVIDER *EVP_KDF_get0_provider(const EVP_KDF *kdf) in EVP_KDF_get0_provider() 106 const EVP_KDF *EVP_KDF_CTX_kdf(EVP_KDF_CTX *ctx) in EVP_KDF_CTX_kdf() 153 int EVP_KDF_get_params(EVP_KDF *kdf, OSSL_PARAM params[]) in EVP_KDF_get_params() 174 int EVP_KDF_names_do_all(const EVP_KDF *kdf, in EVP_KDF_names_do_all()
|
| /freebsd/secure/lib/libcrypto/man/man7/ |
| H A D | Makefile | 17 MAN+= EVP_KDF-ARGON2.7 18 MAN+= EVP_KDF-HKDF.7 19 MAN+= EVP_KDF-HMAC-DRBG.7 20 MAN+= EVP_KDF-KB.7 21 MAN+= EVP_KDF-KRB5KDF.7 22 MAN+= EVP_KDF-PBKDF1.7 23 MAN+= EVP_KDF-PBKDF2.7 24 MAN+= EVP_KDF-PKCS12KDF.7 25 MAN+= EVP_KDF-PVKKDF.7 26 MAN+= EVP_KDF-SCRYPT.7 [all …]
|
| /freebsd/crypto/openssl/doc/man7/ |
| H A D | EVP_KDF-HMAC-DRBG.pod | 5 EVP_KDF-HMAC-DRBG 6 - The HMAC DRBG DETERMINISTIC EVP_KDF implementation 10 Support for a deterministic HMAC DRBG using the B<EVP_KDF> API. This is similar 30 These parameters work as described in L<EVP_KDF(3)/PARAMETERS>. 46 EVP_KDF *kdf = EVP_KDF_fetch(NULL, "HMAC-DRBG-KDF", NULL); 55 L<EVP_KDF(3)>, 56 L<EVP_KDF(3)/PARAMETERS> 60 The EVP_KDF-HMAC-DRBG functionality was added in OpenSSL 3.2.
|
| H A D | EVP_KDF-PVKKDF.pod | 5 EVP_KDF-PVKKDF - The PVK EVP_KDF implementation 9 Support for computing the B<PVK KDF> PIN-based KDF through the B<EVP_KDF> 12 The EVP_KDF-PVKKDF algorithm implements a PVK PIN-based key 34 These parameters work as described in L<EVP_KDF(3)/PARAMETERS>. 50 L<EVP_KDF(3)>, 55 L<EVP_KDF(3)/PARAMETERS>,
|
| H A D | EVP_KDF-KRB5KDF.pod | 5 EVP_KDF-KRB5KDF - The RFC3961 Krb5 KDF EVP_KDF implementation 9 Support for computing the B<KRB5KDF> KDF through the B<EVP_KDF> API. 11 The EVP_KDF-KRB5KDF algorithm implements the key derivation function defined 33 These parameters work as described in L<EVP_KDF(3)/PARAMETERS>. 46 EVP_KDF *kdf = EVP_KDF_fetch(NULL, "KRB5KDF", NULL); 64 EVP_KDF *kdf; 95 L<EVP_KDF(3)>, 99 L<EVP_KDF(3)/PARAMETERS>
|
| H A D | EVP_KDF-PBKDF1.pod | 5 EVP_KDF-PBKDF1 - The PBKDF1 EVP_KDF implementation 9 Support for computing the B<PBKDF1> password-based KDF through the B<EVP_KDF> 12 The EVP_KDF-PBKDF1 algorithm implements the PBKDF1 password-based key 39 These parameters work as described in L<EVP_KDF(3)/PARAMETERS>. 64 L<EVP_KDF(3)>, 69 L<EVP_KDF(3)/PARAMETERS>,
|
| H A D | EVP_KDF-X942-CONCAT.pod | 5 EVP_KDF-X942-CONCAT - The X942 Concat EVP_KDF implementation 9 The EVP_KDF-X942-CONCAT algorithm is identical to EVP_KDF-X963. It is 20 See L<EVP_KDF-X963(7)> for a list of supported parameters and examples.
|
| H A D | EVP_KDF-PKCS12KDF.pod | 5 EVP_KDF-PKCS12KDF - The PKCS#12 EVP_KDF implementation 9 Support for computing the B<PKCS#12> password-based KDF through the B<EVP_KDF> 12 The EVP_KDF-PKCS12KDF algorithm implements the PKCS#12 password-based key 38 These parameters work as described in L<EVP_KDF(3)/PARAMETERS>. 69 L<EVP_KDF(3)>, 74 L<EVP_KDF(3)/PARAMETERS>,
|
| H A D | EVP_KDF-SS.pod | 5 EVP_KDF-SS - The Single Step / One Step EVP_KDF implementation 9 The EVP_KDF-SS algorithm implements the Single Step key derivation function (SSKDF). 56 These parameters work as described in L<EVP_KDF(3)/PARAMETERS>. 94 EVP_KDF *kdf = EVP_KDF_fetch(NULL, "SSKDF", NULL); 105 EVP_KDF *kdf; 130 EVP_KDF *kdf; 159 EVP_KDF *kdf; 190 L<EVP_KDF(3)>, 196 L<EVP_KDF(3)/PARAMETERS>
|
| H A D | EVP_KDF-PBKDF2.pod | 5 EVP_KDF-PBKDF2 - The PBKDF2 EVP_KDF implementation 9 Support for computing the B<PBKDF2> password-based KDF through the B<EVP_KDF> 12 The EVP_KDF-PBKDF2 algorithm implements the PBKDF2 password-based key 41 These parameters work as described in L<EVP_KDF(3)/PARAMETERS>. 95 L<EVP_KDF(3)>, 100 L<EVP_KDF(3)/PARAMETERS>
|
| H A D | EVP_KDF-X963.pod | 5 EVP_KDF-X963 - The X9.63-2001 EVP_KDF implementation 9 The EVP_KDF-X963 algorithm implements the key derivation function (X963KDF). 30 These parameters work as described in L<EVP_KDF(3)/PARAMETERS>. 85 EVP_KDF *kdf = EVP_KDF_fetch(NULL, "X963KDF", NULL); 96 EVP_KDF *kdf; 124 L<EVP_KDF(3)>, 130 L<EVP_KDF(3)/PARAMETERS>
|
| H A D | EVP_KDF-TLS1_PRF.pod | 5 EVP_KDF-TLS1_PRF - The TLS1 PRF EVP_KDF implementation 9 Support for computing the B<TLS1> PRF through the B<EVP_KDF> API. 11 The EVP_KDF-TLS1_PRF algorithm implements the PRF used by TLS versions up to 31 These parameters work as described in L<EVP_KDF(3)/PARAMETERS>. 97 EVP_KDF *kdf = EVP_KDF_fetch(NULL, "TLS1-PRF", NULL); 111 EVP_KDF *kdf; 138 L<EVP_KDF(3)>, 143 L<EVP_KDF(3)/PARAMETERS>
|
| 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. 39 These parameters work as described in L<EVP_KDF(3)/PARAMETERS>. 113 EVP_KDF *kdf = EVP_KDF_fetch(NULL, "HKDF", NULL); 128 EVP_KDF *kdf; 158 L<EVP_KDF(3)>, 164 L<EVP_KDF(3)/PARAMETERS>, 165 L<EVP_KDF-TLS13_KDF(7)>
|
| H A D | EVP_KDF-SSHKDF.pod | 5 EVP_KDF-SSHKDF - The SSHKDF EVP_KDF implementation 9 Support for computing the B<SSHKDF> KDF through the B<EVP_KDF> API. 11 The EVP_KDF-SSHKDF algorithm implements the SSHKDF key derivation function. 37 These parameters work as described in L<EVP_KDF(3)/PARAMETERS>. 125 EVP_KDF *kdf = EVP_KDF_fetch(NULL, "SSHKDF", NULL); 140 EVP_KDF *kdf; 175 L<EVP_KDF(3)>, 181 L<EVP_KDF(3)/PARAMETERS>
|
| H A D | EVP_KDF-SCRYPT.pod | 5 EVP_KDF-SCRYPT - The scrypt EVP_KDF implementation 9 Support for computing the B<scrypt> password-based KDF through the B<EVP_KDF> 12 The EVP_KDF-SCRYPT algorithm implements the scrypt password-based key 50 These parameters work as described in L<EVP_KDF(3)/PARAMETERS>. 75 EVP_KDF *kdf = EVP_KDF_fetch(NULL, "SCRYPT", NULL); 86 EVP_KDF *kdf; 130 L<EVP_KDF(3)>, 135 L<EVP_KDF(3)/PARAMETERS>
|
| H A D | EVP_KDF-KB.pod | 5 EVP_KDF-KB - The Key-Based EVP_KDF implementation 9 The EVP_KDF-KB algorithm implements the Key-Based key derivation function 102 L<EVP_KDF(3)/PARAMETERS>. 108 EVP_KDF *kdf = EVP_KDF_fetch(NULL, "KBKDF", NULL); 122 EVP_KDF *kdf; 150 EVP_KDF *kdf; 183 L<EVP_KDF(3)>, 187 L<EVP_KDF(3)/PARAMETERS>
|
| H A D | EVP_KDF-TLS13_KDF.pod | 5 EVP_KDF-TLS13_KDF - The TLS 1.3 EVP_KDF implementation 10 the B<EVP_KDF> API. 12 The EVP_KDF-TLS13_KDF algorithm implements the HKDF key derivation function 36 These parameters work as described in L<EVP_KDF(3)/PARAMETERS>. 129 EVP_KDF *kdf = EVP_KDF_fetch(NULL, "TLS13-KDF", NULL); 146 L<EVP_KDF(3)>, 152 L<EVP_KDF(3)/PARAMETERS>, 153 L<EVP_KDF-HKDF(7)>
|
| H A D | OSSL_PROVIDER-default.pod | 126 =item HKDF, see L<EVP_KDF-HKDF(7)> 128 =item TLS13-KDF, see L<EVP_KDF-TLS13_KDF(7)> 130 =item SSKDF, see L<EVP_KDF-SS(7)> 132 =item PBKDF2, see L<EVP_KDF-PBKDF2(7)> 134 =item PKCS12KDF, see L<EVP_KDF-PKCS12KDF(7)> 136 =item SSHKDF, see L<EVP_KDF-SSHKDF(7)> 138 =item TLS1-PRF, see L<EVP_KDF-TLS1_PRF(7)> 140 =item KBKDF, see L<EVP_KDF-KB(7)> 142 =item X942KDF-ASN1, see L<EVP_KDF-X942-ASN1(7)> 144 =item X942KDF-CONCAT, see L<EVP_KDF-X942-CONCAT(7)> [all …]
|
| H A D | EVP_KDF-X942-ASN1.pod | 5 EVP_KDF-X942-ASN1 - The X9.42-2003 asn1 EVP_KDF implementation 9 The EVP_KDF-X942-ASN1 algorithm implements the key derivation function 33 These parameters work as described in L<EVP_KDF(3)/PARAMETERS>. 108 EVP_KDF *kdf = EVP_KDF_fetch(NULL, "X942KDF", NULL); 154 L<EVP_KDF(3)>, 160 L<EVP_KDF(3)/PARAMETERS>
|
| H A D | EVP_KDF-ARGON2.pod | 5 EVP_KDF-ARGON2 - The Argon2 EVP KDF implementation 9 Support for computing the B<argon2> password-based KDF through the B<EVP_KDF> 12 The EVP_KDF-ARGON2 algorithm implements the Argon2 password-based key 49 These parameters work as described in L<EVP_KDF(3)/PARAMETERS>. 115 EVP_KDF *kdf = NULL; 174 L<EVP_KDF(3)>, 179 L<EVP_KDF(3)/PARAMETERS>
|
| /freebsd/crypto/openssl/doc/man3/ |
| H A D | EVP_KDF.pod | 5 EVP_KDF, EVP_KDF_fetch, EVP_KDF_free, EVP_KDF_up_ref, 20 typedef struct evp_kdf_st EVP_KDF; 23 EVP_KDF_CTX *EVP_KDF_CTX_new(EVP_KDF *kdf); 24 const EVP_KDF *EVP_KDF_CTX_kdf(EVP_KDF_CTX *ctx); 31 int EVP_KDF_up_ref(EVP_KDF *kdf); 32 void EVP_KDF_free(EVP_KDF *kdf); 33 EVP_KDF *EVP_KDF_fetch(OSSL_LIB_CTX *libctx, const char *algorithm, 35 int EVP_KDF_is_a(const EVP_KDF *kdf, const char *name); 36 const char *EVP_KDF_get0_name(const EVP_KDF *kdf); 37 const char *EVP_KDF_get0_description(const EVP_KDF *kdf); [all …]
|
| /freebsd/crypto/openssl/doc/man1/ |
| H A D | openssl-kdf.pod.in | 69 A comprehensive list of parameters can be found in L<EVP_KDF(3)/PARAMETERS>. 103 such as L<EVP_KDF-PBKDF2(7)>. 112 Some KDF implementations, such as L<EVP_KDF-HKDF(7)>, take an 'info' parameter 206 L<EVP_KDF(3)>, 207 L<EVP_KDF-SCRYPT(7)>, 208 L<EVP_KDF-TLS1_PRF(7)>, 209 L<EVP_KDF-PBKDF2(7)>, 210 L<EVP_KDF-HKDF(7)>, 211 L<EVP_KDF-SS(7)>, 212 L<EVP_KDF-SSHKDF(7)>, [all …]
|
| /freebsd/crypto/krb5/src/lib/crypto/openssl/ |
| H A D | kdf.c | 74 EVP_KDF *kdf = NULL; in k5_sp800_108_counter_hmac() 128 EVP_KDF *kdf = NULL; in k5_sp800_108_feedback_cmac() 187 EVP_KDF *kdf = NULL; in k5_derive_random_rfc3961()
|