Searched refs:optype (Results 1 – 7 of 7) sorted by relevance
/openssl/crypto/evp/ |
H A D | pmeth_lib.c | 41 int keytype, int optype, 1307 if ((optype != -1) && !(ctx->operation & optype)) { in evp_pkey_ctx_ctrl_int() 1334 int EVP_PKEY_CTX_ctrl(EVP_PKEY_CTX *ctx, int keytype, int optype, in EVP_PKEY_CTX_ctrl() argument 1345 ret = evp_pkey_ctx_store_cached_data(ctx, keytype, optype, in EVP_PKEY_CTX_ctrl() 1359 return evp_pkey_ctx_ctrl_int(ctx, keytype, optype, cmd, p1, p2); in EVP_PKEY_CTX_ctrl() 1362 int EVP_PKEY_CTX_ctrl_uint64(EVP_PKEY_CTX *ctx, int keytype, int optype, in EVP_PKEY_CTX_ctrl_uint64() argument 1365 return EVP_PKEY_CTX_ctrl(ctx, keytype, optype, cmd, 0, &value); in EVP_PKEY_CTX_ctrl_uint64() 1442 int keytype, int optype, in evp_pkey_ctx_store_cached_data() argument 1485 if (optype != -1 && (ctx->operation & optype) == 0) { in evp_pkey_ctx_store_cached_data() 1609 int EVP_PKEY_CTX_md(EVP_PKEY_CTX *ctx, int optype, int cmd, const char *md) in EVP_PKEY_CTX_md() argument [all …]
|
H A D | ctrl_params_translate.c | 239 int optype; /* The operation type */ member 418 if (translation->optype != 0) { in default_fixup_args() 2611 if (item->optype != -1 && (tmpl->optype & item->optype) == 0) in lookup_translation() 2708 int keytype, int optype, in evp_pkey_ctx_ctrl_to_param() argument 2722 tmpl.optype = optype; in evp_pkey_ctx_ctrl_to_param() 2784 int optype = pctx->operation == 0 ? -1 : pctx->operation; in evp_pkey_ctx_ctrl_str_to_param() local 2790 tmpl.optype = optype; in evp_pkey_ctx_ctrl_str_to_param() 2843 int optype = pctx->operation == 0 ? -1 : pctx->operation; in evp_pkey_ctx_setget_params_to_ctrl() local 2854 tmpl.optype = optype; in evp_pkey_ctx_setget_params_to_ctrl() 2869 ret = EVP_PKEY_CTX_ctrl(pctx, keytype, optype, in evp_pkey_ctx_setget_params_to_ctrl()
|
/openssl/crypto/rsa/ |
H A D | rsa_lib.c | 739 int RSA_pkey_ctx_ctrl(EVP_PKEY_CTX *ctx, int optype, int cmd, int p1, void *p2) in RSA_pkey_ctx_ctrl() argument 746 return EVP_PKEY_CTX_ctrl(ctx, -1, optype, cmd, p1, p2); in RSA_pkey_ctx_ctrl() 963 int keytype, int optype, in int_set_rsa_md_name() argument 970 if (ctx == NULL || mdname == NULL || (ctx->operation & optype) == 0) { in int_set_rsa_md_name() 1003 int keytype, int optype, in int_get_rsa_md_name() argument 1010 if (ctx == NULL || mdname == NULL || (ctx->operation & optype) == 0) { in int_get_rsa_md_name()
|
/openssl/doc/man3/ |
H A D | EVP_PKEY_CTX_ctrl.pod | 79 int EVP_PKEY_CTX_ctrl(EVP_PKEY_CTX *ctx, int keytype, int optype, 81 int EVP_PKEY_CTX_ctrl_uint64(EVP_PKEY_CTX *ctx, int keytype, int optype, 86 int EVP_PKEY_CTX_md(EVP_PKEY_CTX *ctx, int optype, int cmd, const char *md); 198 type used must match I<keytype> if it is not -1. The parameter I<optype> is a
|
/openssl/include/openssl/ |
H A D | rsa.h | 324 int RSA_pkey_ctx_ctrl(EVP_PKEY_CTX *ctx, int optype, int cmd, int p1, void *p2);
|
H A D | evp.h | 1827 int EVP_PKEY_CTX_ctrl(EVP_PKEY_CTX *ctx, int keytype, int optype, 1831 int EVP_PKEY_CTX_ctrl_uint64(EVP_PKEY_CTX *ctx, int keytype, int optype, 1837 int EVP_PKEY_CTX_md(EVP_PKEY_CTX *ctx, int optype, int cmd, const char *md);
|
/openssl/include/crypto/ |
H A D | evp.h | 924 int keytype, int optype,
|
Completed in 58 milliseconds