/openssl-master/crypto/evp/ |
A D | m_sigver.c | 41 OSSL_LIB_CTX *libctx, const char *props, in do_sigver_init() argument 67 ctx->pctx = EVP_PKEY_CTX_new_from_pkey(libctx, pkey, props); in do_sigver_init() 89 if (props == NULL) in do_sigver_init() 90 props = locpctx->propquery; in do_sigver_init() 206 = signature->newctx(ossl_provider_ctx(signature->prov), props); in do_sigver_init() 245 ctx->fetched_digest = EVP_MD_fetch(locpctx->libctx, mdname, props); in do_sigver_init() 376 const char *props, EVP_PKEY *pkey, in EVP_DigestSignInit_ex() argument 379 return do_sigver_init(ctx, pctx, NULL, mdname, libctx, props, NULL, pkey, 0, in EVP_DigestSignInit_ex() 392 const char *props, EVP_PKEY *pkey, in EVP_DigestVerifyInit_ex() argument 395 return do_sigver_init(ctx, pctx, NULL, mdname, libctx, props, NULL, pkey, 1, in EVP_DigestVerifyInit_ex()
|
/openssl-master/crypto/encode_decode/ |
A D | encoder_lib.c | 189 const OSSL_PROPERTY_LIST *props; in ossl_encoder_instance_new() local 209 props = ossl_encoder_parsed_properties(encoder); in ossl_encoder_instance_new() 210 if (props == NULL) { in ossl_encoder_instance_new() 218 prop = ossl_property_find_property(props, libctx, "output"); in ossl_encoder_instance_new() 230 prop = ossl_property_find_property(props, libctx, "structure"); in ossl_encoder_instance_new()
|
A D | decoder_lib.c | 218 const OSSL_PROPERTY_LIST *props; in ossl_decoder_instance_new() local 237 props = ossl_decoder_parsed_properties(decoder); in ossl_decoder_instance_new() 238 if (props == NULL) { in ossl_decoder_instance_new() 246 prop = ossl_property_find_property(props, libctx, "input"); in ossl_decoder_instance_new() 258 prop = ossl_property_find_property(props, libctx, "structure"); in ossl_decoder_instance_new()
|
/openssl-master/crypto/ffc/ |
A D | ffc_backend.c | 105 const char *props = NULL; in ossl_ffc_params_fromdata() local 114 if (!ossl_ffc_set_digest(ffc, prm->data, props)) in ossl_ffc_params_fromdata()
|
A D | ffc_params.c | 129 int ossl_ffc_set_digest(FFC_PARAMS *params, const char *alg, const char *props) in ossl_ffc_set_digest() argument 132 params->mdprops = props; in ossl_ffc_set_digest()
|
/openssl-master/crypto/ |
A D | provider_child.c | 190 static int provider_global_props_cb(const char *props, void *cbdata) in provider_global_props_cb() argument 194 return evp_set_default_properties_int(ctx, props, 0, 1); in provider_global_props_cb()
|
A D | provider_core.c | 128 int (*global_props_cb)(const char *props, void *cbdata); 1619 int ossl_provider_default_props_update(OSSL_LIB_CTX *libctx, const char *props) in ossl_provider_default_props_update() argument 1635 child_cb->global_props_cb(props, child_cb->cbdata); in ossl_provider_default_props_update() 1651 const char *props, in ossl_provider_register_child_cb()
|
/openssl-master/doc/man3/ |
A D | EVP_DigestSignInit.pod | 14 const char *props, EVP_PKEY *pkey, 36 provider supports fetching the digest then it may use the I<props> argument for 59 specified in I<props>. 62 I<props> argument can always be NULL. 116 digest I<type>, and I<props> will be NULL. Where supplied the ENGINE I<e> will
|
A D | EVP_DigestVerifyInit.pod | 14 const char *props, EVP_PKEY *pkey, 35 the provider supports fetching the digest then it may use the B<props> argument 58 in I<libctx> and the property query string specified in I<props>. 107 inferred from the supplied digest B<type>, and B<props> will be NULL. Where
|
A D | ASN1_item_sign.pod | 56 specified in I<props> are used when searching for algorithms in providers. 73 specified in I<props> are used when searching for algorithms in providers.
|
/openssl-master/doc/man7/ |
A D | EVP_ASYM_CIPHER-SM2.pod | 18 =item "digest-props" (B<OSSL_ASYM_CIPHER_PARAM_DIGEST_PROPS>) <UTF8 string>
|
A D | provider-asym_cipher.pod | 209 =item "digest-props" (B<OSSL_ASYM_CIPHER_PARAM_OAEP_DIGEST_PROPS>) <UTF8 string> 213 =item "digest-props" (B<OSSL_ASYM_CIPHER_PARAM_DIGEST_PROPS>) <UTF8 string> 222 =item "mgf1-digest-props" (B<OSSL_ASYM_CIPHER_PARAM_MGF1_DIGEST_PROPS>) <UTF8 string>
|
A D | provider-signature.pod | 46 const char *props, void *provkey, 59 const char *props, void *provkey, 270 also be properties to be used in fetching the digest in the I<props> parameter, 309 also be properties to be used in fetching the digest in the I<props> parameter,
|
A D | EVP_KEYEXCH-ECDH.pod | 44 =item "kdf-digest-props" (B<OSSL_EXCHANGE_PARAM_KDF_DIGEST_PROPS>) <UTF8 string>
|
A D | provider-base.pod | 98 int (*global_props_cb)(const char *props, void *cbdata),
|
/openssl-master/include/internal/ |
A D | provider.h | 49 int ossl_provider_default_props_update(OSSL_LIB_CTX *libctx, const char *props);
|
A D | ffc.h | 132 int ossl_ffc_set_digest(FFC_PARAMS *params, const char *alg, const char *props);
|
/openssl-master/providers/implementations/encode_decode/ |
A D | encode_key2any.c | 979 const char *props = NULL; in key2any_set_ctx_params() local 983 if (propsp != NULL && !OSSL_PARAM_get_utf8_string_ptr(propsp, &props)) in key2any_set_ctx_params() 991 EVP_CIPHER_fetch(libctx, ciphername, props)) == NULL)) in key2any_set_ctx_params()
|
/openssl-master/doc/internal/man3/ |
A D | ossl_provider_new.pod | 49 const char *props); 193 supplied in the I<props> string.
|
/openssl-master/include/openssl/ |
A D | core_dispatch.h | 213 int (*global_props_cb)(const char *props, void *cbdata),
|
A D | evp.h | 822 const char *props, EVP_PKEY *pkey, 833 const char *props, EVP_PKEY *pkey,
|