HomeSort by: relevance | last modified time | path
    Searched refs:mdprops (Results 1 - 25 of 27) sorted by relevancy

1 2

  /src/crypto/external/bsd/openssl/dist/providers/implementations/signature/
dsa_sig.c 121 const char *mdname, const char *mdprops)
123 if (mdprops == NULL)
124 mdprops = ctx->propq;
129 EVP_MD *md = EVP_MD_fetch(ctx->libctx, mdname, mdprops);
489 char mdprops[OSSL_MAX_PROPQUERY_SIZE] = "", *pmdprops = mdprops; local
497 && !OSSL_PARAM_get_utf8_string(propsp, &pmdprops, sizeof(mdprops)))
499 if (!dsa_setup_md(pdsactx, mdname, mdprops))
ecdsa_sig.c 216 const char *mdprops)
232 if (mdprops == NULL)
233 mdprops = ctx->propq;
234 md = EVP_MD_fetch(ctx->libctx, mdname, mdprops);
496 char mdprops[OSSL_MAX_PROPQUERY_SIZE] = "", *pmdprops = mdprops; local
504 && !OSSL_PARAM_get_utf8_string(propsp, &pmdprops, sizeof(mdprops)))
506 if (!ecdsa_setup_md(ctx, mdname, mdprops))
rsa_sig.c 284 const char *mdprops)
286 if (mdprops == NULL)
287 mdprops = ctx->propq;
290 EVP_MD *md = EVP_MD_fetch(ctx->libctx, mdname, mdprops);
348 const char *mdprops)
354 if (mdprops == NULL)
355 mdprops = ctx->propq;
357 if ((md = EVP_MD_fetch(ctx->libctx, mdname, mdprops)) == NULL) {
1156 char mdprops[OSSL_MAX_PROPQUERY_SIZE] = "", *pmdprops = NULL; local
1179 pmdprops = mdprops;
    [all...]
  /src/crypto/external/bsd/openssl/dist/providers/implementations/asymciphers/
rsa_enc.c 429 char mdprops[OSSL_MAX_PROPQUERY_SIZE] = { '\0' }; local
446 str = mdprops;
447 if (!OSSL_PARAM_get_utf8_string(p, &str, sizeof(mdprops)))
452 prsactx->oaep_md = EVP_MD_fetch(prsactx->libctx, mdname, mdprops);
493 prsactx->oaep_md = EVP_MD_fetch(prsactx->libctx, "SHA1", mdprops);
509 str = mdprops;
510 if (!OSSL_PARAM_get_utf8_string(p, &str, sizeof(mdprops)))
  /src/crypto/external/bsd/openssl/dist/crypto/ffc/
ffc_params.c 131 params->mdprops = props;
186 dst->mdprops = src->mdprops;
275 if (ffc->mdprops != NULL
278 ffc->mdprops))
ffc_params_generate.c 537 md = EVP_MD_fetch(libctx, params->mdname, params->mdprops);
546 md = EVP_MD_fetch(libctx, def_name, params->mdprops);
832 md = EVP_MD_fetch(libctx, params->mdname, params->mdprops);
841 md = EVP_MD_fetch(libctx, def_name, params->mdprops);
  /src/crypto/external/apache2/openssl/dist/crypto/ffc/
ffc_params.c 135 params->mdprops = props;
191 dst->mdprops = src->mdprops;
279 if (ffc->mdprops != NULL
282 ffc->mdprops))
ffc_params_generate.c 540 md = EVP_MD_fetch(libctx, params->mdname, params->mdprops);
549 md = EVP_MD_fetch(libctx, def_name, params->mdprops);
836 md = EVP_MD_fetch(libctx, params->mdname, params->mdprops);
845 md = EVP_MD_fetch(libctx, def_name, params->mdprops);
  /src/crypto/external/apache2/openssl/dist/providers/implementations/asymciphers/
rsa_enc.c 465 char mdprops[OSSL_MAX_PROPQUERY_SIZE] = { '\0' }; local
489 str = mdprops;
490 if (!OSSL_PARAM_get_utf8_string(p, &str, sizeof(mdprops)))
495 prsactx->oaep_md = EVP_MD_fetch(prsactx->libctx, mdname, mdprops);
534 prsactx->oaep_md = EVP_MD_fetch(prsactx->libctx, "SHA1", mdprops);
550 str = mdprops;
551 if (!OSSL_PARAM_get_utf8_string(p, &str, sizeof(mdprops)))
  /src/crypto/external/apache2/openssl/dist/providers/implementations/keymgmt/
dsa_kmgmt.c 70 char *mdprops; member in struct:dsa_gen_ctx
530 OPENSSL_free(gctx->mdprops);
531 gctx->mdprops = OPENSSL_strdup(p->data);
532 if (gctx->mdprops == NULL)
657 ossl_ffc_set_digest(ffc, gctx->mdname, gctx->mdprops);
695 OPENSSL_free(gctx->mdprops);
dh_kmgmt.c 76 char *mdprops; member in struct:dh_gen_ctx
640 OPENSSL_free(gctx->mdprops);
641 gctx->mdprops = OPENSSL_strdup(p->data);
642 if (gctx->mdprops == NULL)
759 ossl_ffc_set_digest(ffc, gctx->mdname, gctx->mdprops);
824 OPENSSL_free(gctx->mdprops);
  /src/crypto/external/bsd/openssl/dist/providers/implementations/keymgmt/
dsa_kmgmt.c 67 char *mdprops; member in struct:dsa_gen_ctx
516 OPENSSL_free(gctx->mdprops);
517 gctx->mdprops = OPENSSL_strdup(p->data);
518 if (gctx->mdprops == NULL)
594 if (!ossl_ffc_set_digest(ffc, gctx->mdname, gctx->mdprops))
632 OPENSSL_free(gctx->mdprops);
dh_kmgmt.c 73 char *mdprops; member in struct:dh_gen_ctx
637 OPENSSL_free(gctx->mdprops);
638 gctx->mdprops = OPENSSL_strdup(p->data);
639 if (gctx->mdprops == NULL)
742 if (!ossl_ffc_set_digest(ffc, gctx->mdname, gctx->mdprops))
800 OPENSSL_free(gctx->mdprops);
  /src/crypto/external/apache2/openssl/dist/crypto/rsa/
rsa_lib.c 964 const char *propkey, const char *mdprops)
989 if (evp_pkey_ctx_is_provided(ctx) && mdprops != NULL) {
991 *p++ = OSSL_PARAM_construct_utf8_string(propkey, (char *)mdprops, 0);
1066 const char *mdprops)
1070 OSSL_PKEY_PARAM_RSA_DIGEST_PROPS, mdprops);
1088 const char *mdprops)
1092 OSSL_ASYM_CIPHER_PARAM_OAEP_DIGEST_PROPS, mdprops);
1128 const char *mdprops)
1133 OSSL_PKEY_PARAM_MGF1_PROPERTIES, mdprops);
  /src/crypto/external/apache2/openssl/dist/providers/implementations/exchange/
ecdh_exch.c 291 char mdprops[80] = { '\0' }; /* should be big enough */ local
297 str = mdprops;
302 if (!OSSL_PARAM_get_utf8_string(p, &str, sizeof(mdprops)))
307 pectx->kdf_md = EVP_MD_fetch(pectx->libctx, name, mdprops);
dh_exch.c 378 char mdprops[80] = { '\0' }; /* should be big enough */ local
384 str = mdprops;
389 if (!OSSL_PARAM_get_utf8_string(p, &str, sizeof(mdprops)))
394 pdhctx->kdf_md = EVP_MD_fetch(pdhctx->libctx, name, mdprops);
  /src/crypto/external/bsd/openssl/dist/crypto/rsa/
rsa_lib.c 887 const char *propkey, const char *mdprops)
912 if (evp_pkey_ctx_is_provided(ctx) && mdprops != NULL) {
914 *p++ = OSSL_PARAM_construct_utf8_string(propkey, (char *)mdprops, 0);
989 const char *mdprops)
993 OSSL_PKEY_PARAM_RSA_DIGEST_PROPS, mdprops);
1011 const char *mdprops)
1016 OSSL_ASYM_CIPHER_PARAM_OAEP_DIGEST_PROPS, mdprops);
1052 const char *mdprops)
1057 OSSL_PKEY_PARAM_MGF1_PROPERTIES, mdprops);
  /src/crypto/external/bsd/openssl/dist/providers/implementations/exchange/
dh_exch.c 337 char mdprops[80] = { '\0' }; /* should be big enough */ local
343 str = mdprops;
348 if (!OSSL_PARAM_get_utf8_string(p, &str, sizeof(mdprops)))
353 pdhctx->kdf_md = EVP_MD_fetch(pdhctx->libctx, name, mdprops);
ecdh_exch.c 269 char mdprops[80] = { '\0' }; /* should be big enough */ local
275 str = mdprops;
280 if (!OSSL_PARAM_get_utf8_string(p, &str, sizeof(mdprops)))
285 pectx->kdf_md = EVP_MD_fetch(pectx->libctx, name, mdprops);
  /src/crypto/external/apache2/openssl/dist/providers/implementations/signature/
dsa_sig.c 150 const char *mdname, const char *mdprops,
155 if (mdprops == NULL)
156 mdprops = ctx->propq;
164 md = EVP_MD_fetch(ctx->libctx, mdname, mdprops);
763 char mdprops[OSSL_MAX_PROPQUERY_SIZE] = "", *pmdprops = mdprops; local
770 && !OSSL_PARAM_get_utf8_string(propsp, &pmdprops, sizeof(mdprops)))
772 if (!dsa_setup_md(pdsactx, mdname, mdprops, "DSA Set Ctx"))
ecdsa_sig.c 167 const char *mdname, const char *mdprops,
185 if (mdprops == NULL)
186 mdprops = ctx->propq;
187 md = EVP_MD_fetch(ctx->libctx, mdname, mdprops);
779 char mdprops[OSSL_MAX_PROPQUERY_SIZE] = "", *pmdprops = mdprops; local
786 && !OSSL_PARAM_get_utf8_string(propsp, &pmdprops, sizeof(mdprops)))
788 if (!ecdsa_setup_md(ctx, mdname, mdprops, "ECDSA Set Ctx"))
rsa_sig.c 371 const char *mdprops, const char *desc)
375 if (mdprops == NULL)
376 mdprops = ctx->propq;
382 md = EVP_MD_fetch(ctx->libctx, mdname, mdprops);
465 const char *mdprops)
471 if (mdprops == NULL)
472 mdprops = ctx->propq;
474 if ((md = EVP_MD_fetch(ctx->libctx, mdname, mdprops)) == NULL) {
1555 char mdprops[OSSL_MAX_PROPQUERY_SIZE] = "", *pmdprops = NULL; local
1593 pmdprops = mdprops;
    [all...]
  /src/crypto/external/bsd/openssl/dist/include/openssl/
rsa.h 145 const char *mdprops);
156 const char *mdprops);
160 const char *mdprops);
  /src/crypto/external/apache2/openssl/dist/include/openssl/
rsa.h 151 const char *mdprops);
162 const char *mdprops);
166 const char *mdprops);
  /src/crypto/external/apache2/openssl/dist/include/internal/
ffc.h 120 const char *mdprops; member in struct:ffc_params_st

Completed in 44 milliseconds

1 2