/openssl/providers/fips/include/fips/ |
H A D | fipsindicator.h | 57 signed char settable[OSSL_FIPS_IND_SETTABLE_MAX]; /* See OSSL_FIPS_IND_STATE */ member 120 # define OSSL_FIPS_IND_GET_PARAM(ctx, p, settable, id, name) \ argument 121 *settable = ossl_FIPS_IND_get_settable(&((ctx)->indicator), id); \ 122 if (*settable != OSSL_FIPS_IND_STATE_UNKNOWN) \ 123 *p = OSSL_PARAM_construct_int(name, settable);
|
/openssl/providers/fips/ |
H A D | fipsindicator.c | 22 ind->settable[i] = OSSL_FIPS_IND_STATE_UNKNOWN; in ossl_FIPS_IND_init() 42 ind->settable[id] = state; in ossl_FIPS_IND_set_settable() 49 return ind->settable[id]; in ossl_FIPS_IND_get_settable()
|
/openssl/crypto/rsa/ |
H A D | rsa_acvp_test_params.c | 22 static const OSSL_PARAM settable[] = { in ossl_rsa_acvp_test_gen_params_new() local 33 p = OSSL_PARAM_locate_const(src, settable[0].key); in ossl_rsa_acvp_test_gen_params_new() 38 alloc = OPENSSL_zalloc(sizeof(settable)); in ossl_rsa_acvp_test_gen_params_new() 43 for (s = settable; s->key != NULL; ++s) { in ossl_rsa_acvp_test_gen_params_new()
|
/openssl/providers/implementations/keymgmt/ |
H A D | mac_legacy_kmgmt.c | 457 static OSSL_PARAM settable[] = { in mac_gen_settable_params() local 461 return settable; in mac_gen_settable_params() 467 static OSSL_PARAM settable[] = { in cmac_gen_settable_params() local 472 return settable; in cmac_gen_settable_params()
|
H A D | rsa_kmgmt.c | 557 static OSSL_PARAM settable[] = { in rsa_gen_settable_params() local 562 return settable; in rsa_gen_settable_params() 568 static OSSL_PARAM settable[] = { in rsapss_gen_settable_params() local 574 return settable; in rsapss_gen_settable_params()
|
H A D | template_kmgmt.c | 360 static OSSL_PARAM settable[] = { in template_gen_settable_params() local 363 return settable; in template_gen_settable_params()
|
H A D | dsa_kmgmt.c | 543 static OSSL_PARAM settable[] = { in dsa_gen_settable_params() local 556 return settable; in dsa_gen_settable_params()
|
H A D | ecx_kmgmt.c | 604 static OSSL_PARAM settable[] = { in ecx_gen_settable_params() local 610 return settable; in ecx_gen_settable_params()
|
H A D | ec_kmgmt.c | 1223 static OSSL_PARAM settable[] = { in ec_gen_settable_params() local 1240 return settable; in ec_gen_settable_params()
|
/openssl/doc/designs/ |
H A D | fast-param-find.md | 109 - "params" defines the parameters both gettable and settable 119 parameter is a settable, gettable or both 129 - "published" set to "yes" includes the parameter in the gettable/settable 137 - unpublished: do not generate this parameter in the gettable/settable list
|
H A D | fips_indicator.md | 200 signed char settable[OSSL_FIPS_IND_SETTABLE_MAX]; 224 This triggers the callback, id is the settable index and must also be used 232 This must be put into the algorithms settable ctx_params table. 233 The name is the settable 'key' name such as OSSL_PKEY_PARAM_FIPS_KEY_CHECK.
|
/openssl/doc/man7/ |
H A D | EVP_MAC-KMAC.pod | 69 This settable parameter is described in L<provider-mac(7)>. 73 This settable parameter is described in L<provider-mac(7)>. It is used by 79 This settable parameter is described in L<provider-mac(7)>.
|
H A D | EVP_MD-MDC2.pod | 24 settable for an B<EVP_MD_CTX> with L<EVP_MD_CTX_set_params(3)>:
|
H A D | EVP_MD-SHA1.pod | 24 settable for an B<EVP_MD_CTX> with L<EVP_MD_CTX_set_params(3)>:
|
H A D | EVP_MD-MD5-SHA1.pod | 26 settable for an B<EVP_MD_CTX> with L<EVP_MD_CTX_set_params(3)>:
|
H A D | EVP_MD-BLAKE2.pod | 47 are settable for an B<EVP_MD_CTX> with L<EVP_DigestInit_ex2(3)> or
|
H A D | EVP_SIGNATURE-DSA.pod | 84 The settable parameters are described in L<provider-signature(7)>.
|
H A D | provider-keyexch.pod | 150 describes the settable parameters, i.e. parameters that can be used with 160 Notice that not all settable parameters are also gettable, and vice versa.
|
H A D | provider-signature.pod | 562 constant L<OSSL_PARAM(3)> array that describes the gettable and settable parameters, 586 get a constant L<OSSL_PARAM(3)> array that describes the gettable and settable 598 return the gettable or settable parameters in a constant L<OSSL_PARAM(3)> array.
|
/openssl/doc/man3/ |
H A D | EVP_PKEY_CTX_set_params.pod | 36 settable parameters for the current algorithm implementation, i.e. parameters 66 It may also return NULL if there are no settable parameters available.
|
H A D | EVP_PKEY_fromdata.pod | 52 the settable parameters that can be used with EVP_PKEY_fromdata(). 55 Parameters in the I<params> array that are not among the settable parameters
|
H A D | EVP_KDF.pod | 135 the retrievable and settable parameters. EVP_KDF_gettable_params() 146 constant L<OSSL_PARAM(3)> arrays that describe the settable parameters that
|
H A D | EVP_RAND.pod | 191 the retrievable and settable parameters. EVP_RAND_gettable_params() returns 202 constant L<OSSL_PARAM(3)> arrays that describe the settable parameters that
|
H A D | EVP_MAC.pod | 194 the retrievable and settable parameters. EVP_MAC_gettable_params() 205 constant L<OSSL_PARAM(3)> arrays that describe the settable parameters that
|
/openssl/crypto/evp/ |
H A D | ctrl_params_translate.c | 543 const OSSL_PARAM *settable = NULL; in default_fixup_args() local 572 settable = EVP_PKEY_CTX_settable_params(ctx->pctx); in default_fixup_args() 573 if (!OSSL_PARAM_allocate_from_text(ctx->params, settable, in default_fixup_args()
|