Symbol: kdf_type
crypto/openssl/crypto/cms/cms_dh.c
211
int kdf_type, wrap_nid;
crypto/openssl/crypto/cms/cms_dh.c
251
kdf_type = EVP_PKEY_CTX_get_dh_kdf_type(pctx);
crypto/openssl/crypto/cms/cms_dh.c
252
if (kdf_type <= 0 || EVP_PKEY_CTX_get_dh_kdf_md(pctx, &kdf_md) <= 0)
crypto/openssl/crypto/cms/cms_dh.c
255
if (kdf_type == EVP_PKEY_DH_KDF_NONE) {
crypto/openssl/crypto/cms/cms_dh.c
256
kdf_type = EVP_PKEY_DH_KDF_X9_42;
crypto/openssl/crypto/cms/cms_dh.c
257
if (EVP_PKEY_CTX_set_dh_kdf_type(pctx, kdf_type) <= 0)
crypto/openssl/crypto/cms/cms_dh.c
259
} else if (kdf_type != EVP_PKEY_DH_KDF_X9_42)
crypto/openssl/crypto/cms/cms_ec.c
270
int ecdh_nid, kdf_type, kdf_nid, wrap_nid;
crypto/openssl/crypto/cms/cms_ec.c
299
kdf_type = EVP_PKEY_CTX_get_ecdh_kdf_type(pctx);
crypto/openssl/crypto/cms/cms_ec.c
300
if (kdf_type <= 0)
crypto/openssl/crypto/cms/cms_ec.c
312
if (kdf_type == EVP_PKEY_ECDH_KDF_NONE) {
crypto/openssl/crypto/cms/cms_ec.c
313
kdf_type = EVP_PKEY_ECDH_KDF_X9_63;
crypto/openssl/crypto/cms/cms_ec.c
314
if (EVP_PKEY_CTX_set_ecdh_kdf_type(pctx, kdf_type) <= 0)
crypto/openssl/crypto/dh/dh_pmeth.c
169
return dctx->kdf_type;
crypto/openssl/crypto/dh/dh_pmeth.c
172
dctx->kdf_type = p1;
crypto/openssl/crypto/dh/dh_pmeth.c
414
if (dctx->kdf_type == EVP_PKEY_DH_KDF_NONE) {
crypto/openssl/crypto/dh/dh_pmeth.c
42
char kdf_type;
crypto/openssl/crypto/dh/dh_pmeth.c
427
} else if (dctx->kdf_type == EVP_PKEY_DH_KDF_X9_42) {
crypto/openssl/crypto/dh/dh_pmeth.c
63
dctx->kdf_type = EVP_PKEY_DH_KDF_NONE;
crypto/openssl/crypto/dh/dh_pmeth.c
99
dctx->kdf_type = sctx->kdf_type;
crypto/openssl/crypto/ec/ec_pmeth.c
220
if (dctx->kdf_type == EVP_PKEY_ECDH_KDF_NONE)
crypto/openssl/crypto/ec/ec_pmeth.c
316
return dctx->kdf_type;
crypto/openssl/crypto/ec/ec_pmeth.c
319
dctx->kdf_type = p1;
crypto/openssl/crypto/ec/ec_pmeth.c
37
char kdf_type;
crypto/openssl/crypto/ec/ec_pmeth.c
55
dctx->kdf_type = EVP_PKEY_ECDH_KDF_NONE;
crypto/openssl/crypto/ec/ec_pmeth.c
79
dctx->kdf_type = sctx->kdf_type;
crypto/openssl/providers/implementations/exchange/dh_exch.c
133
pdhctx->kdf_type = PROV_DH_KDF_NONE;
crypto/openssl/providers/implementations/exchange/dh_exch.c
236
if (pdhctx->kdf_type == PROV_DH_KDF_X9_42_ASN1) {
crypto/openssl/providers/implementations/exchange/dh_exch.c
261
switch (pdhctx->kdf_type) {
crypto/openssl/providers/implementations/exchange/dh_exch.c
367
pdhctx->kdf_type = PROV_DH_KDF_NONE;
crypto/openssl/providers/implementations/exchange/dh_exch.c
369
pdhctx->kdf_type = PROV_DH_KDF_X9_42_ASN1;
crypto/openssl/providers/implementations/exchange/dh_exch.c
504
const char *kdf_type = NULL;
crypto/openssl/providers/implementations/exchange/dh_exch.c
506
switch (pdhctx->kdf_type) {
crypto/openssl/providers/implementations/exchange/dh_exch.c
508
kdf_type = "";
crypto/openssl/providers/implementations/exchange/dh_exch.c
511
kdf_type = OSSL_KDF_NAME_X942KDF_ASN1;
crypto/openssl/providers/implementations/exchange/dh_exch.c
517
if (!OSSL_PARAM_set_utf8_string(p, kdf_type))
crypto/openssl/providers/implementations/exchange/dh_exch.c
70
enum kdf_type kdf_type;
crypto/openssl/providers/implementations/exchange/dh_exch.c
94
pdhctx->kdf_type = PROV_DH_KDF_NONE;
crypto/openssl/providers/implementations/exchange/ecdh_exch.c
115
pecdhctx->kdf_type = PROV_ECDH_KDF_NONE;
crypto/openssl/providers/implementations/exchange/ecdh_exch.c
282
pectx->kdf_type = PROV_ECDH_KDF_NONE;
crypto/openssl/providers/implementations/exchange/ecdh_exch.c
284
pectx->kdf_type = PROV_ECDH_KDF_X9_63;
crypto/openssl/providers/implementations/exchange/ecdh_exch.c
392
const char *kdf_type = NULL;
crypto/openssl/providers/implementations/exchange/ecdh_exch.c
394
switch (pectx->kdf_type) {
crypto/openssl/providers/implementations/exchange/ecdh_exch.c
396
kdf_type = "";
crypto/openssl/providers/implementations/exchange/ecdh_exch.c
399
kdf_type = OSSL_KDF_NAME_X963KDF;
crypto/openssl/providers/implementations/exchange/ecdh_exch.c
405
if (!OSSL_PARAM_set_utf8_string(p, kdf_type))
crypto/openssl/providers/implementations/exchange/ecdh_exch.c
609
switch (pecdhctx->kdf_type) {
crypto/openssl/providers/implementations/exchange/ecdh_exch.c
72
enum kdf_type kdf_type;
crypto/openssl/providers/implementations/exchange/ecdh_exch.c
96
pectx->kdf_type = PROV_ECDH_KDF_NONE;