Searched refs:gettables (Results 1 – 7 of 7) sorted by relevance
/freebsd/crypto/openssl/apps/ |
H A D | list.c | 444 const OSSL_PARAM *gettables; in display_random() local 472 gettables = EVP_RAND_gettable_ctx_params(rand); in display_random() 473 if (gettables != NULL) in display_random() 474 for (; gettables->key != NULL; gettables++) { in display_random() 476 if (OPENSSL_strcasecmp(gettables->key, OSSL_RAND_PARAM_STATE) == 0) in display_random() 479 if (gettables->data_type != OSSL_PARAM_UTF8_STRING in display_random() 480 && gettables->data_type != OSSL_PARAM_UTF8_PTR in display_random() 483 params->key = gettables->key; in display_random() 484 params->data_type = gettables->data_type; in display_random() 485 if (gettables->data_type == OSSL_PARAM_UNSIGNED_INTEGER in display_random() [all …]
|
/freebsd/tests/sys/netpfil/pf/ioctl/ |
H A D | validation.c | 158 ATF_TC_WITH_CLEANUP(gettables); 159 ATF_TC_HEAD(gettables, tc) in ATF_TC_HEAD() argument 164 ATF_TC_BODY(gettables, tc) in ATF_TC_BODY() argument 191 ATF_TC_CLEANUP(gettables, tc) in ATF_TC_CLEANUP() argument 935 ATF_TP_ADD_TC(tp, gettables); in ATF_TP_ADD_TCS()
|
/freebsd/crypto/openssl/crypto/evp/ |
H A D | evp_lib.c | 1039 const OSSL_PARAM *gettables; in EVP_MD_CTX_get_size_ex() local 1041 gettables = EVP_MD_CTX_gettable_params(c); in EVP_MD_CTX_get_size_ex() 1042 if (gettables != NULL in EVP_MD_CTX_get_size_ex() 1043 && OSSL_PARAM_locate_const(gettables, in EVP_MD_CTX_get_size_ex()
|
H A D | pmeth_lib.c | 1041 const OSSL_PARAM *gettables; in evp_pkey_ctx_add1_octet_string() local 1066 gettables = EVP_PKEY_CTX_gettable_params(ctx); in evp_pkey_ctx_add1_octet_string() 1067 if (gettables == NULL || OSSL_PARAM_locate_const(gettables, param) == NULL) in evp_pkey_ctx_add1_octet_string()
|
/freebsd/crypto/openssl/test/ |
H A D | evp_kdf_test.c | 248 const OSSL_PARAM *gettables, *p; in do_kdf_hkdf_gettables() local 260 if (!TEST_ptr(gettables = EVP_KDF_CTX_gettable_params(kctx)) in do_kdf_hkdf_gettables() 261 || !TEST_ptr(p = OSSL_PARAM_locate_const(gettables, OSSL_KDF_PARAM_SIZE))) in do_kdf_hkdf_gettables()
|
H A D | acvp_test.c | 1066 const OSSL_PARAM *gettables = EVP_CIPHER_CTX_gettable_params(ctx); in aes_gcm_enc_dec() local 1068 int ivgen = (OSSL_PARAM_locate_const(gettables, ivgenkey) != NULL); in aes_gcm_enc_dec()
|
H A D | evp_test.c | 163 const OSSL_PARAM *gettables = EVP_PKEY_CTX_gettable_params(ctx); in pkey_check_fips_approved() local 165 if (gettables == NULL in pkey_check_fips_approved() 166 || OSSL_PARAM_locate_const(gettables, in pkey_check_fips_approved()
|