2020-03-15 19:34:29 +08:00
|
|
|
/*
|
2023-09-07 16:59:15 +08:00
|
|
|
* Copyright 2020-2023 The OpenSSL Project Authors. All Rights Reserved.
|
2020-03-15 19:34:29 +08:00
|
|
|
*
|
|
|
|
* Licensed under the Apache License 2.0 (the "License"). You may not use
|
|
|
|
* this file except in compliance with the License. You can obtain a copy
|
|
|
|
* in the file LICENSE in the source distribution or at
|
|
|
|
* https://www.openssl.org/source/license.html
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* ECDSA low level APIs are deprecated for public use, but still ok for
|
|
|
|
* internal use.
|
|
|
|
*/
|
|
|
|
#include "internal/deprecated.h"
|
|
|
|
|
|
|
|
#include <string.h> /* memcpy */
|
|
|
|
#include <openssl/crypto.h>
|
2020-06-21 07:21:19 +08:00
|
|
|
#include <openssl/core_dispatch.h>
|
2020-03-15 19:34:29 +08:00
|
|
|
#include <openssl/core_names.h>
|
|
|
|
#include <openssl/dsa.h>
|
|
|
|
#include <openssl/params.h>
|
|
|
|
#include <openssl/evp.h>
|
|
|
|
#include <openssl/err.h>
|
2021-02-06 00:40:42 +08:00
|
|
|
#include <openssl/proverr.h>
|
2020-03-15 19:34:29 +08:00
|
|
|
#include "internal/nelem.h"
|
|
|
|
#include "internal/sizes.h"
|
2020-03-31 23:20:24 +08:00
|
|
|
#include "internal/cryptlib.h"
|
2022-07-15 19:22:01 +08:00
|
|
|
#include "internal/deterministic_nonce.h"
|
signature: add FIPS error state handling
The functions that check for the provider being runnable are: newctx, dupctx,
sign init, sign, verify init, verify, verify recover init, verify recover,
digest sign init, digest sign final, digest verify init and digest verify final.
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/12801)
2020-09-07 11:44:17 +08:00
|
|
|
#include "prov/providercommon.h"
|
2020-03-15 19:34:29 +08:00
|
|
|
#include "prov/implementations.h"
|
|
|
|
#include "prov/provider_ctx.h"
|
2020-09-04 15:55:28 +08:00
|
|
|
#include "prov/securitycheck.h"
|
2024-07-01 09:36:58 +08:00
|
|
|
#include "prov/fipsindicator.h"
|
2020-03-15 19:34:29 +08:00
|
|
|
#include "crypto/ec.h"
|
2020-03-31 23:20:24 +08:00
|
|
|
#include "prov/der_ec.h"
|
2020-03-15 19:34:29 +08:00
|
|
|
|
2020-06-21 07:19:16 +08:00
|
|
|
static OSSL_FUNC_signature_newctx_fn ecdsa_newctx;
|
2020-08-29 10:51:14 +08:00
|
|
|
static OSSL_FUNC_signature_sign_init_fn ecdsa_sign_init;
|
|
|
|
static OSSL_FUNC_signature_verify_init_fn ecdsa_verify_init;
|
2020-06-21 07:19:16 +08:00
|
|
|
static OSSL_FUNC_signature_sign_fn ecdsa_sign;
|
|
|
|
static OSSL_FUNC_signature_verify_fn ecdsa_verify;
|
2020-08-29 10:51:14 +08:00
|
|
|
static OSSL_FUNC_signature_digest_sign_init_fn ecdsa_digest_sign_init;
|
2020-06-21 07:19:16 +08:00
|
|
|
static OSSL_FUNC_signature_digest_sign_update_fn ecdsa_digest_signverify_update;
|
|
|
|
static OSSL_FUNC_signature_digest_sign_final_fn ecdsa_digest_sign_final;
|
2020-08-29 10:51:14 +08:00
|
|
|
static OSSL_FUNC_signature_digest_verify_init_fn ecdsa_digest_verify_init;
|
2020-06-21 07:19:16 +08:00
|
|
|
static OSSL_FUNC_signature_digest_verify_update_fn ecdsa_digest_signverify_update;
|
|
|
|
static OSSL_FUNC_signature_digest_verify_final_fn ecdsa_digest_verify_final;
|
|
|
|
static OSSL_FUNC_signature_freectx_fn ecdsa_freectx;
|
|
|
|
static OSSL_FUNC_signature_dupctx_fn ecdsa_dupctx;
|
|
|
|
static OSSL_FUNC_signature_get_ctx_params_fn ecdsa_get_ctx_params;
|
|
|
|
static OSSL_FUNC_signature_gettable_ctx_params_fn ecdsa_gettable_ctx_params;
|
|
|
|
static OSSL_FUNC_signature_set_ctx_params_fn ecdsa_set_ctx_params;
|
|
|
|
static OSSL_FUNC_signature_settable_ctx_params_fn ecdsa_settable_ctx_params;
|
|
|
|
static OSSL_FUNC_signature_get_ctx_md_params_fn ecdsa_get_ctx_md_params;
|
|
|
|
static OSSL_FUNC_signature_gettable_ctx_md_params_fn ecdsa_gettable_ctx_md_params;
|
|
|
|
static OSSL_FUNC_signature_set_ctx_md_params_fn ecdsa_set_ctx_md_params;
|
|
|
|
static OSSL_FUNC_signature_settable_ctx_md_params_fn ecdsa_settable_ctx_md_params;
|
2020-03-15 19:34:29 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* What's passed as an actual key is defined by the KEYMGMT interface.
|
|
|
|
* We happen to know that our KEYMGMT simply passes DSA structures, so
|
|
|
|
* we use that here too.
|
|
|
|
*/
|
|
|
|
|
|
|
|
typedef struct {
|
2020-10-15 17:55:50 +08:00
|
|
|
OSSL_LIB_CTX *libctx;
|
2020-05-07 03:44:58 +08:00
|
|
|
char *propq;
|
2020-03-15 19:34:29 +08:00
|
|
|
EC_KEY *ec;
|
|
|
|
char mdname[OSSL_MAX_NAME_SIZE];
|
|
|
|
|
2020-11-26 13:03:10 +08:00
|
|
|
/*
|
|
|
|
* Flag to determine if the hash function can be changed (1) or not (0)
|
|
|
|
* Because it's dangerous to change during a DigestSign or DigestVerify
|
|
|
|
* operation, this flag is cleared by their Init function, and set again
|
|
|
|
* by their Final function.
|
|
|
|
*/
|
|
|
|
unsigned int flag_allow_md : 1;
|
|
|
|
|
2020-03-15 19:34:29 +08:00
|
|
|
/* The Algorithm Identifier of the combined signature algorithm */
|
2020-03-31 23:20:24 +08:00
|
|
|
unsigned char aid_buf[OSSL_MAX_ALGORITHM_ID_SIZE];
|
|
|
|
unsigned char *aid;
|
2020-03-15 19:34:29 +08:00
|
|
|
size_t aid_len;
|
|
|
|
size_t mdsize;
|
2020-08-29 10:51:14 +08:00
|
|
|
int operation;
|
2020-03-15 19:34:29 +08:00
|
|
|
|
|
|
|
EVP_MD *md;
|
|
|
|
EVP_MD_CTX *mdctx;
|
|
|
|
/*
|
|
|
|
* Internally used to cache the results of calling the EC group
|
|
|
|
* sign_setup() methods which are then passed to the sign operation.
|
|
|
|
* This is used by CAVS failure tests to terminate a loop if the signature
|
|
|
|
* is not valid.
|
|
|
|
* This could of also been done with a simple flag.
|
|
|
|
*/
|
|
|
|
BIGNUM *kinv;
|
|
|
|
BIGNUM *r;
|
2020-08-29 16:03:17 +08:00
|
|
|
#if !defined(OPENSSL_NO_ACVP_TESTS)
|
2020-06-17 09:33:16 +08:00
|
|
|
/*
|
|
|
|
* This indicates that KAT (CAVS) test is running. Externally an app will
|
|
|
|
* override the random callback such that the generated private key and k
|
|
|
|
* are known.
|
|
|
|
* Normal operation will loop to choose a new k if the signature is not
|
|
|
|
* valid - but for this mode of operation it forces a failure instead.
|
|
|
|
*/
|
|
|
|
unsigned int kattest;
|
|
|
|
#endif
|
2022-07-15 19:22:01 +08:00
|
|
|
/* If this is set then the generated k is not random */
|
|
|
|
unsigned int nonce_type;
|
2024-07-01 09:36:58 +08:00
|
|
|
OSSL_FIPS_IND_DECLARE
|
2020-03-15 19:34:29 +08:00
|
|
|
} PROV_ECDSA_CTX;
|
|
|
|
|
2020-05-07 03:44:58 +08:00
|
|
|
static void *ecdsa_newctx(void *provctx, const char *propq)
|
2020-03-15 19:34:29 +08:00
|
|
|
{
|
signature: add FIPS error state handling
The functions that check for the provider being runnable are: newctx, dupctx,
sign init, sign, verify init, verify, verify recover init, verify recover,
digest sign init, digest sign final, digest verify init and digest verify final.
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/12801)
2020-09-07 11:44:17 +08:00
|
|
|
PROV_ECDSA_CTX *ctx;
|
2020-03-15 19:34:29 +08:00
|
|
|
|
signature: add FIPS error state handling
The functions that check for the provider being runnable are: newctx, dupctx,
sign init, sign, verify init, verify, verify recover init, verify recover,
digest sign init, digest sign final, digest verify init and digest verify final.
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/12801)
2020-09-07 11:44:17 +08:00
|
|
|
if (!ossl_prov_is_running())
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
ctx = OPENSSL_zalloc(sizeof(PROV_ECDSA_CTX));
|
2020-03-15 19:34:29 +08:00
|
|
|
if (ctx == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
2024-07-01 09:36:58 +08:00
|
|
|
OSSL_FIPS_IND_INIT(ctx)
|
2020-11-26 13:03:10 +08:00
|
|
|
ctx->flag_allow_md = 1;
|
2020-10-15 17:55:50 +08:00
|
|
|
ctx->libctx = PROV_LIBCTX_OF(provctx);
|
2020-05-07 03:44:58 +08:00
|
|
|
if (propq != NULL && (ctx->propq = OPENSSL_strdup(propq)) == NULL) {
|
|
|
|
OPENSSL_free(ctx);
|
|
|
|
ctx = NULL;
|
|
|
|
}
|
2020-03-15 19:34:29 +08:00
|
|
|
return ctx;
|
|
|
|
}
|
|
|
|
|
2021-03-02 20:43:36 +08:00
|
|
|
static int ecdsa_signverify_init(void *vctx, void *ec,
|
2024-07-01 09:36:58 +08:00
|
|
|
const OSSL_PARAM params[], int operation,
|
|
|
|
const char *desc)
|
2020-03-15 19:34:29 +08:00
|
|
|
{
|
|
|
|
PROV_ECDSA_CTX *ctx = (PROV_ECDSA_CTX *)vctx;
|
|
|
|
|
signature: add FIPS error state handling
The functions that check for the provider being runnable are: newctx, dupctx,
sign init, sign, verify init, verify, verify recover init, verify recover,
digest sign init, digest sign final, digest verify init and digest verify final.
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/12801)
2020-09-07 11:44:17 +08:00
|
|
|
if (!ossl_prov_is_running()
|
2021-11-04 22:38:51 +08:00
|
|
|
|| ctx == NULL)
|
2020-03-15 19:34:29 +08:00
|
|
|
return 0;
|
2021-11-04 22:38:51 +08:00
|
|
|
|
|
|
|
if (ec == NULL && ctx->ec == NULL) {
|
|
|
|
ERR_raise(ERR_LIB_PROV, PROV_R_NO_KEY_SET);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ec != NULL) {
|
|
|
|
if (!EC_KEY_up_ref(ec))
|
|
|
|
return 0;
|
|
|
|
EC_KEY_free(ctx->ec);
|
|
|
|
ctx->ec = ec;
|
|
|
|
}
|
|
|
|
|
2020-08-29 10:51:14 +08:00
|
|
|
ctx->operation = operation;
|
2021-11-04 22:38:51 +08:00
|
|
|
|
2024-07-01 09:36:58 +08:00
|
|
|
OSSL_FIPS_IND_SET_APPROVED(ctx)
|
2021-03-02 20:43:36 +08:00
|
|
|
if (!ecdsa_set_ctx_params(ctx, params))
|
|
|
|
return 0;
|
2024-07-01 09:36:58 +08:00
|
|
|
#ifdef FIPS_MODULE
|
|
|
|
if (!ossl_fips_ind_ec_key_check(OSSL_FIPS_IND_GET(ctx),
|
|
|
|
OSSL_FIPS_IND_SETTABLE0, ctx->libctx,
|
|
|
|
EC_KEY_get0_group(ctx->ec), desc,
|
|
|
|
operation == EVP_PKEY_OP_SIGN))
|
|
|
|
return 0;
|
|
|
|
#endif
|
2021-11-04 22:38:51 +08:00
|
|
|
return 1;
|
2020-08-29 10:51:14 +08:00
|
|
|
}
|
|
|
|
|
2021-03-02 20:43:36 +08:00
|
|
|
static int ecdsa_sign_init(void *vctx, void *ec, const OSSL_PARAM params[])
|
2020-08-29 10:51:14 +08:00
|
|
|
{
|
2024-07-01 09:36:58 +08:00
|
|
|
return ecdsa_signverify_init(vctx, ec, params, EVP_PKEY_OP_SIGN,
|
|
|
|
"ECDSA Sign Init");
|
2020-08-29 10:51:14 +08:00
|
|
|
}
|
|
|
|
|
2021-03-02 20:43:36 +08:00
|
|
|
static int ecdsa_verify_init(void *vctx, void *ec, const OSSL_PARAM params[])
|
2020-08-29 10:51:14 +08:00
|
|
|
{
|
2024-07-01 09:36:58 +08:00
|
|
|
return ecdsa_signverify_init(vctx, ec, params, EVP_PKEY_OP_VERIFY,
|
|
|
|
"ECDSA Verify Init");
|
2020-03-15 19:34:29 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static int ecdsa_sign(void *vctx, unsigned char *sig, size_t *siglen,
|
|
|
|
size_t sigsize, const unsigned char *tbs, size_t tbslen)
|
|
|
|
{
|
|
|
|
PROV_ECDSA_CTX *ctx = (PROV_ECDSA_CTX *)vctx;
|
|
|
|
int ret;
|
|
|
|
unsigned int sltmp;
|
|
|
|
size_t ecsize = ECDSA_size(ctx->ec);
|
|
|
|
|
signature: add FIPS error state handling
The functions that check for the provider being runnable are: newctx, dupctx,
sign init, sign, verify init, verify, verify recover init, verify recover,
digest sign init, digest sign final, digest verify init and digest verify final.
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/12801)
2020-09-07 11:44:17 +08:00
|
|
|
if (!ossl_prov_is_running())
|
|
|
|
return 0;
|
|
|
|
|
2020-03-15 19:34:29 +08:00
|
|
|
if (sig == NULL) {
|
|
|
|
*siglen = ecsize;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2020-08-29 16:03:17 +08:00
|
|
|
#if !defined(OPENSSL_NO_ACVP_TESTS)
|
2020-03-15 19:34:29 +08:00
|
|
|
if (ctx->kattest && !ECDSA_sign_setup(ctx->ec, NULL, &ctx->kinv, &ctx->r))
|
|
|
|
return 0;
|
2020-06-17 09:33:16 +08:00
|
|
|
#endif
|
2020-03-15 19:34:29 +08:00
|
|
|
|
|
|
|
if (sigsize < (size_t)ecsize)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if (ctx->mdsize != 0 && tbslen != ctx->mdsize)
|
|
|
|
return 0;
|
|
|
|
|
2022-07-15 19:22:01 +08:00
|
|
|
if (ctx->nonce_type != 0) {
|
|
|
|
ret = ossl_ecdsa_deterministic_sign(tbs, tbslen, sig, &sltmp,
|
|
|
|
ctx->ec, ctx->nonce_type,
|
|
|
|
ctx->mdname,
|
|
|
|
ctx->libctx, ctx->propq);
|
|
|
|
} else {
|
|
|
|
ret = ECDSA_sign_ex(0, tbs, tbslen, sig, &sltmp, ctx->kinv, ctx->r,
|
|
|
|
ctx->ec);
|
|
|
|
}
|
2020-03-15 19:34:29 +08:00
|
|
|
if (ret <= 0)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
*siglen = sltmp;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int ecdsa_verify(void *vctx, const unsigned char *sig, size_t siglen,
|
|
|
|
const unsigned char *tbs, size_t tbslen)
|
|
|
|
{
|
|
|
|
PROV_ECDSA_CTX *ctx = (PROV_ECDSA_CTX *)vctx;
|
|
|
|
|
signature: add FIPS error state handling
The functions that check for the provider being runnable are: newctx, dupctx,
sign init, sign, verify init, verify, verify recover init, verify recover,
digest sign init, digest sign final, digest verify init and digest verify final.
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/12801)
2020-09-07 11:44:17 +08:00
|
|
|
if (!ossl_prov_is_running() || (ctx->mdsize != 0 && tbslen != ctx->mdsize))
|
2020-03-15 19:34:29 +08:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
return ECDSA_verify(0, tbs, tbslen, sig, siglen, ctx->ec);
|
|
|
|
}
|
|
|
|
|
2020-11-26 13:03:10 +08:00
|
|
|
static int ecdsa_setup_md(PROV_ECDSA_CTX *ctx, const char *mdname,
|
2024-07-01 09:36:58 +08:00
|
|
|
const char *mdprops, const char *desc)
|
2020-03-15 19:34:29 +08:00
|
|
|
{
|
2020-11-26 13:03:10 +08:00
|
|
|
EVP_MD *md = NULL;
|
|
|
|
size_t mdname_len;
|
2024-07-01 09:36:58 +08:00
|
|
|
int md_nid, md_size;
|
2020-11-26 13:03:10 +08:00
|
|
|
WPACKET pkt;
|
|
|
|
|
|
|
|
if (mdname == NULL)
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
mdname_len = strlen(mdname);
|
|
|
|
if (mdname_len >= sizeof(ctx->mdname)) {
|
|
|
|
ERR_raise_data(ERR_LIB_PROV, PROV_R_INVALID_DIGEST,
|
|
|
|
"%s exceeds name buffer length", mdname);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (mdprops == NULL)
|
|
|
|
mdprops = ctx->propq;
|
|
|
|
md = EVP_MD_fetch(ctx->libctx, mdname, mdprops);
|
|
|
|
if (md == NULL) {
|
|
|
|
ERR_raise_data(ERR_LIB_PROV, PROV_R_INVALID_DIGEST,
|
|
|
|
"%s could not be fetched", mdname);
|
|
|
|
return 0;
|
|
|
|
}
|
2024-03-23 04:49:27 +08:00
|
|
|
md_size = EVP_MD_get_size(md);
|
|
|
|
if (md_size <= 0) {
|
|
|
|
ERR_raise_data(ERR_LIB_PROV, PROV_R_INVALID_DIGEST,
|
|
|
|
"%s has invalid md size %d", mdname, md_size);
|
2024-07-01 09:36:58 +08:00
|
|
|
goto err;
|
2024-03-23 04:49:27 +08:00
|
|
|
}
|
2024-07-01 09:36:58 +08:00
|
|
|
md_nid = ossl_digest_get_approved_nid(md);
|
2021-05-10 22:51:39 +08:00
|
|
|
if (md_nid < 0) {
|
2020-11-26 13:03:10 +08:00
|
|
|
ERR_raise_data(ERR_LIB_PROV, PROV_R_DIGEST_NOT_ALLOWED,
|
|
|
|
"digest=%s", mdname);
|
2024-07-01 09:36:58 +08:00
|
|
|
goto err;
|
|
|
|
}
|
2024-07-29 10:07:39 +08:00
|
|
|
/* XOF digests don't work */
|
|
|
|
if ((EVP_MD_get_flags(md) & EVP_MD_FLAG_XOF) != 0) {
|
|
|
|
ERR_raise(ERR_LIB_PROV, PROV_R_XOF_DIGESTS_NOT_ALLOWED);
|
2024-07-29 10:39:39 +08:00
|
|
|
goto err;
|
2024-07-29 10:07:39 +08:00
|
|
|
}
|
2024-07-01 09:36:58 +08:00
|
|
|
|
|
|
|
#ifdef FIPS_MODULE
|
|
|
|
{
|
|
|
|
int sha1_allowed = (ctx->operation != EVP_PKEY_OP_SIGN);
|
|
|
|
|
|
|
|
if (!ossl_fips_ind_digest_sign_check(OSSL_FIPS_IND_GET(ctx),
|
|
|
|
OSSL_FIPS_IND_SETTABLE1, ctx->libctx,
|
2024-07-29 10:39:39 +08:00
|
|
|
md_nid, sha1_allowed, desc,
|
|
|
|
&FIPS_fips_signature_digest_check))
|
2024-07-01 09:36:58 +08:00
|
|
|
goto err;
|
2020-11-26 13:03:10 +08:00
|
|
|
}
|
2024-07-01 09:36:58 +08:00
|
|
|
#endif
|
2020-11-26 13:03:10 +08:00
|
|
|
|
2021-07-14 21:41:22 +08:00
|
|
|
if (!ctx->flag_allow_md) {
|
|
|
|
if (ctx->mdname[0] != '\0' && !EVP_MD_is_a(md, ctx->mdname)) {
|
|
|
|
ERR_raise_data(ERR_LIB_PROV, PROV_R_DIGEST_NOT_ALLOWED,
|
|
|
|
"digest %s != %s", mdname, ctx->mdname);
|
2024-07-01 09:36:58 +08:00
|
|
|
goto err;
|
2021-07-14 21:41:22 +08:00
|
|
|
}
|
|
|
|
EVP_MD_free(md);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2020-03-15 19:34:29 +08:00
|
|
|
EVP_MD_CTX_free(ctx->mdctx);
|
|
|
|
EVP_MD_free(ctx->md);
|
2020-11-26 13:03:10 +08:00
|
|
|
|
|
|
|
ctx->aid_len = 0;
|
|
|
|
if (WPACKET_init_der(&pkt, ctx->aid_buf, sizeof(ctx->aid_buf))
|
|
|
|
&& ossl_DER_w_algorithmIdentifier_ECDSA_with_MD(&pkt, -1, ctx->ec,
|
|
|
|
md_nid)
|
|
|
|
&& WPACKET_finish(&pkt)) {
|
|
|
|
WPACKET_get_total_written(&pkt, &ctx->aid_len);
|
|
|
|
ctx->aid = WPACKET_get_curr(&pkt);
|
|
|
|
}
|
|
|
|
WPACKET_cleanup(&pkt);
|
2020-03-15 19:34:29 +08:00
|
|
|
ctx->mdctx = NULL;
|
2020-11-26 13:03:10 +08:00
|
|
|
ctx->md = md;
|
2024-03-23 04:49:27 +08:00
|
|
|
ctx->mdsize = (size_t)md_size;
|
2020-11-26 13:03:10 +08:00
|
|
|
OPENSSL_strlcpy(ctx->mdname, mdname, sizeof(ctx->mdname));
|
|
|
|
|
|
|
|
return 1;
|
2024-07-01 09:36:58 +08:00
|
|
|
err:
|
|
|
|
EVP_MD_free(md);
|
|
|
|
return 0;
|
2020-03-15 19:34:29 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static int ecdsa_digest_signverify_init(void *vctx, const char *mdname,
|
2021-03-02 20:43:36 +08:00
|
|
|
void *ec, const OSSL_PARAM params[],
|
2024-07-01 09:36:58 +08:00
|
|
|
int operation, const char *desc)
|
2020-03-15 19:34:29 +08:00
|
|
|
{
|
|
|
|
PROV_ECDSA_CTX *ctx = (PROV_ECDSA_CTX *)vctx;
|
|
|
|
|
signature: add FIPS error state handling
The functions that check for the provider being runnable are: newctx, dupctx,
sign init, sign, verify init, verify, verify recover init, verify recover,
digest sign init, digest sign final, digest verify init and digest verify final.
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/12801)
2020-09-07 11:44:17 +08:00
|
|
|
if (!ossl_prov_is_running())
|
|
|
|
return 0;
|
|
|
|
|
2024-07-01 09:36:58 +08:00
|
|
|
if (!ecdsa_signverify_init(vctx, ec, params, operation, desc)
|
|
|
|
|| !ecdsa_setup_md(ctx, mdname, NULL, desc))
|
2020-03-15 19:34:29 +08:00
|
|
|
return 0;
|
|
|
|
|
2021-07-14 21:41:22 +08:00
|
|
|
ctx->flag_allow_md = 0;
|
2021-11-04 22:38:51 +08:00
|
|
|
|
|
|
|
if (ctx->mdctx == NULL) {
|
|
|
|
ctx->mdctx = EVP_MD_CTX_new();
|
|
|
|
if (ctx->mdctx == NULL)
|
|
|
|
goto error;
|
|
|
|
}
|
2020-03-15 19:34:29 +08:00
|
|
|
|
2021-03-02 20:43:36 +08:00
|
|
|
if (!EVP_DigestInit_ex2(ctx->mdctx, ctx->md, params))
|
2020-03-15 19:34:29 +08:00
|
|
|
goto error;
|
|
|
|
return 1;
|
|
|
|
error:
|
2020-11-26 13:03:10 +08:00
|
|
|
EVP_MD_CTX_free(ctx->mdctx);
|
|
|
|
ctx->mdctx = NULL;
|
2020-03-15 19:34:29 +08:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2021-03-02 20:43:36 +08:00
|
|
|
static int ecdsa_digest_sign_init(void *vctx, const char *mdname, void *ec,
|
|
|
|
const OSSL_PARAM params[])
|
2020-08-29 10:51:14 +08:00
|
|
|
{
|
2021-03-02 20:43:36 +08:00
|
|
|
return ecdsa_digest_signverify_init(vctx, mdname, ec, params,
|
2024-07-01 09:36:58 +08:00
|
|
|
EVP_PKEY_OP_SIGN,
|
|
|
|
"ECDSA Digest Sign Init");
|
2020-08-29 10:51:14 +08:00
|
|
|
}
|
|
|
|
|
2021-03-02 20:43:36 +08:00
|
|
|
static int ecdsa_digest_verify_init(void *vctx, const char *mdname, void *ec,
|
|
|
|
const OSSL_PARAM params[])
|
2020-08-29 10:51:14 +08:00
|
|
|
{
|
2021-03-02 20:43:36 +08:00
|
|
|
return ecdsa_digest_signverify_init(vctx, mdname, ec, params,
|
2024-07-01 09:36:58 +08:00
|
|
|
EVP_PKEY_OP_VERIFY,
|
|
|
|
"ECDSA Digest Verify Init");
|
2020-08-29 10:51:14 +08:00
|
|
|
}
|
|
|
|
|
2020-03-15 19:34:29 +08:00
|
|
|
int ecdsa_digest_signverify_update(void *vctx, const unsigned char *data,
|
|
|
|
size_t datalen)
|
|
|
|
{
|
|
|
|
PROV_ECDSA_CTX *ctx = (PROV_ECDSA_CTX *)vctx;
|
|
|
|
|
|
|
|
if (ctx == NULL || ctx->mdctx == NULL)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
return EVP_DigestUpdate(ctx->mdctx, data, datalen);
|
|
|
|
}
|
|
|
|
|
|
|
|
int ecdsa_digest_sign_final(void *vctx, unsigned char *sig, size_t *siglen,
|
|
|
|
size_t sigsize)
|
|
|
|
{
|
|
|
|
PROV_ECDSA_CTX *ctx = (PROV_ECDSA_CTX *)vctx;
|
|
|
|
unsigned char digest[EVP_MAX_MD_SIZE];
|
|
|
|
unsigned int dlen = 0;
|
|
|
|
|
signature: add FIPS error state handling
The functions that check for the provider being runnable are: newctx, dupctx,
sign init, sign, verify init, verify, verify recover init, verify recover,
digest sign init, digest sign final, digest verify init and digest verify final.
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/12801)
2020-09-07 11:44:17 +08:00
|
|
|
if (!ossl_prov_is_running() || ctx == NULL || ctx->mdctx == NULL)
|
2020-03-15 19:34:29 +08:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If sig is NULL then we're just finding out the sig size. Other fields
|
|
|
|
* are ignored. Defer to ecdsa_sign.
|
|
|
|
*/
|
2020-11-26 13:03:10 +08:00
|
|
|
if (sig != NULL
|
|
|
|
&& !EVP_DigestFinal_ex(ctx->mdctx, digest, &dlen))
|
|
|
|
return 0;
|
|
|
|
ctx->flag_allow_md = 1;
|
2020-03-15 19:34:29 +08:00
|
|
|
return ecdsa_sign(vctx, sig, siglen, sigsize, digest, (size_t)dlen);
|
|
|
|
}
|
|
|
|
|
|
|
|
int ecdsa_digest_verify_final(void *vctx, const unsigned char *sig,
|
|
|
|
size_t siglen)
|
|
|
|
{
|
|
|
|
PROV_ECDSA_CTX *ctx = (PROV_ECDSA_CTX *)vctx;
|
|
|
|
unsigned char digest[EVP_MAX_MD_SIZE];
|
|
|
|
unsigned int dlen = 0;
|
|
|
|
|
signature: add FIPS error state handling
The functions that check for the provider being runnable are: newctx, dupctx,
sign init, sign, verify init, verify, verify recover init, verify recover,
digest sign init, digest sign final, digest verify init and digest verify final.
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/12801)
2020-09-07 11:44:17 +08:00
|
|
|
if (!ossl_prov_is_running() || ctx == NULL || ctx->mdctx == NULL)
|
2020-03-15 19:34:29 +08:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
if (!EVP_DigestFinal_ex(ctx->mdctx, digest, &dlen))
|
|
|
|
return 0;
|
2020-11-26 13:03:10 +08:00
|
|
|
ctx->flag_allow_md = 1;
|
2020-03-15 19:34:29 +08:00
|
|
|
return ecdsa_verify(ctx, sig, siglen, digest, (size_t)dlen);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void ecdsa_freectx(void *vctx)
|
|
|
|
{
|
|
|
|
PROV_ECDSA_CTX *ctx = (PROV_ECDSA_CTX *)vctx;
|
|
|
|
|
2020-11-26 13:03:10 +08:00
|
|
|
OPENSSL_free(ctx->propq);
|
|
|
|
EVP_MD_CTX_free(ctx->mdctx);
|
|
|
|
EVP_MD_free(ctx->md);
|
|
|
|
ctx->propq = NULL;
|
|
|
|
ctx->mdctx = NULL;
|
|
|
|
ctx->md = NULL;
|
|
|
|
ctx->mdsize = 0;
|
2020-03-15 19:34:29 +08:00
|
|
|
EC_KEY_free(ctx->ec);
|
|
|
|
BN_clear_free(ctx->kinv);
|
|
|
|
BN_clear_free(ctx->r);
|
|
|
|
OPENSSL_free(ctx);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void *ecdsa_dupctx(void *vctx)
|
|
|
|
{
|
|
|
|
PROV_ECDSA_CTX *srcctx = (PROV_ECDSA_CTX *)vctx;
|
|
|
|
PROV_ECDSA_CTX *dstctx;
|
|
|
|
|
signature: add FIPS error state handling
The functions that check for the provider being runnable are: newctx, dupctx,
sign init, sign, verify init, verify, verify recover init, verify recover,
digest sign init, digest sign final, digest verify init and digest verify final.
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/12801)
2020-09-07 11:44:17 +08:00
|
|
|
if (!ossl_prov_is_running())
|
|
|
|
return NULL;
|
|
|
|
|
2020-03-15 19:34:29 +08:00
|
|
|
dstctx = OPENSSL_zalloc(sizeof(*srcctx));
|
|
|
|
if (dstctx == NULL)
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
*dstctx = *srcctx;
|
|
|
|
dstctx->ec = NULL;
|
|
|
|
dstctx->md = NULL;
|
|
|
|
dstctx->mdctx = NULL;
|
2020-11-26 13:03:10 +08:00
|
|
|
dstctx->propq = NULL;
|
2020-03-15 19:34:29 +08:00
|
|
|
|
|
|
|
if (srcctx->ec != NULL && !EC_KEY_up_ref(srcctx->ec))
|
|
|
|
goto err;
|
|
|
|
/* Test KATS should not need to be supported */
|
|
|
|
if (srcctx->kinv != NULL || srcctx->r != NULL)
|
|
|
|
goto err;
|
|
|
|
dstctx->ec = srcctx->ec;
|
|
|
|
|
|
|
|
if (srcctx->md != NULL && !EVP_MD_up_ref(srcctx->md))
|
|
|
|
goto err;
|
|
|
|
dstctx->md = srcctx->md;
|
|
|
|
|
|
|
|
if (srcctx->mdctx != NULL) {
|
|
|
|
dstctx->mdctx = EVP_MD_CTX_new();
|
|
|
|
if (dstctx->mdctx == NULL
|
|
|
|
|| !EVP_MD_CTX_copy_ex(dstctx->mdctx, srcctx->mdctx))
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
2020-11-26 13:03:10 +08:00
|
|
|
if (srcctx->propq != NULL) {
|
|
|
|
dstctx->propq = OPENSSL_strdup(srcctx->propq);
|
|
|
|
if (dstctx->propq == NULL)
|
|
|
|
goto err;
|
|
|
|
}
|
|
|
|
|
2020-03-15 19:34:29 +08:00
|
|
|
return dstctx;
|
|
|
|
err:
|
|
|
|
ecdsa_freectx(dstctx);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int ecdsa_get_ctx_params(void *vctx, OSSL_PARAM *params)
|
|
|
|
{
|
|
|
|
PROV_ECDSA_CTX *ctx = (PROV_ECDSA_CTX *)vctx;
|
|
|
|
OSSL_PARAM *p;
|
|
|
|
|
2021-03-02 20:43:36 +08:00
|
|
|
if (ctx == NULL)
|
2020-03-15 19:34:29 +08:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
p = OSSL_PARAM_locate(params, OSSL_SIGNATURE_PARAM_ALGORITHM_ID);
|
|
|
|
if (p != NULL && !OSSL_PARAM_set_octet_string(p, ctx->aid, ctx->aid_len))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
p = OSSL_PARAM_locate(params, OSSL_SIGNATURE_PARAM_DIGEST_SIZE);
|
|
|
|
if (p != NULL && !OSSL_PARAM_set_size_t(p, ctx->mdsize))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
p = OSSL_PARAM_locate(params, OSSL_SIGNATURE_PARAM_DIGEST);
|
|
|
|
if (p != NULL && !OSSL_PARAM_set_utf8_string(p, ctx->md == NULL
|
|
|
|
? ctx->mdname
|
Rename all getters to use get/get0 in name
For functions that exist in 1.1.1 provide a simple aliases via #define.
Fixes #15236
Functions with OSSL_DECODER_, OSSL_ENCODER_, OSSL_STORE_LOADER_,
EVP_KEYEXCH_, EVP_KEM_, EVP_ASYM_CIPHER_, EVP_SIGNATURE_,
EVP_KEYMGMT_, EVP_RAND_, EVP_MAC_, EVP_KDF_, EVP_PKEY_,
EVP_MD_, and EVP_CIPHER_ prefixes are renamed.
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/15405)
2021-05-21 22:58:08 +08:00
|
|
|
: EVP_MD_get0_name(ctx->md)))
|
2020-03-15 19:34:29 +08:00
|
|
|
return 0;
|
|
|
|
|
2023-01-18 18:24:16 +08:00
|
|
|
p = OSSL_PARAM_locate(params, OSSL_SIGNATURE_PARAM_NONCE_TYPE);
|
|
|
|
if (p != NULL && !OSSL_PARAM_set_uint(p, ctx->nonce_type))
|
|
|
|
return 0;
|
2024-07-01 09:36:58 +08:00
|
|
|
if (!OSSL_FIPS_IND_GET_CTX_PARAM(ctx, params))
|
|
|
|
return 0;
|
2020-03-15 19:34:29 +08:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const OSSL_PARAM known_gettable_ctx_params[] = {
|
|
|
|
OSSL_PARAM_octet_string(OSSL_SIGNATURE_PARAM_ALGORITHM_ID, NULL, 0),
|
|
|
|
OSSL_PARAM_size_t(OSSL_SIGNATURE_PARAM_DIGEST_SIZE, NULL),
|
|
|
|
OSSL_PARAM_utf8_string(OSSL_SIGNATURE_PARAM_DIGEST, NULL, 0),
|
2023-01-18 18:24:16 +08:00
|
|
|
OSSL_PARAM_uint(OSSL_SIGNATURE_PARAM_NONCE_TYPE, NULL),
|
2024-07-01 09:36:58 +08:00
|
|
|
OSSL_FIPS_IND_GETTABLE_CTX_PARAM()
|
2020-03-15 19:34:29 +08:00
|
|
|
OSSL_PARAM_END
|
|
|
|
};
|
|
|
|
|
2021-02-27 01:02:36 +08:00
|
|
|
static const OSSL_PARAM *ecdsa_gettable_ctx_params(ossl_unused void *vctx,
|
|
|
|
ossl_unused void *provctx)
|
2020-03-15 19:34:29 +08:00
|
|
|
{
|
|
|
|
return known_gettable_ctx_params;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int ecdsa_set_ctx_params(void *vctx, const OSSL_PARAM params[])
|
|
|
|
{
|
|
|
|
PROV_ECDSA_CTX *ctx = (PROV_ECDSA_CTX *)vctx;
|
|
|
|
const OSSL_PARAM *p;
|
2021-07-14 21:41:22 +08:00
|
|
|
size_t mdsize = 0;
|
2020-03-15 19:34:29 +08:00
|
|
|
|
2021-03-02 20:43:36 +08:00
|
|
|
if (ctx == NULL)
|
2020-03-15 19:34:29 +08:00
|
|
|
return 0;
|
2021-03-02 20:43:36 +08:00
|
|
|
if (params == NULL)
|
|
|
|
return 1;
|
2020-03-15 19:34:29 +08:00
|
|
|
|
2024-07-01 09:36:58 +08:00
|
|
|
if (!OSSL_FIPS_IND_SET_CTX_PARAM(ctx, OSSL_FIPS_IND_SETTABLE0, params,
|
|
|
|
OSSL_SIGNATURE_PARAM_FIPS_KEY_CHECK))
|
|
|
|
return 0;
|
|
|
|
if (!OSSL_FIPS_IND_SET_CTX_PARAM(ctx, OSSL_FIPS_IND_SETTABLE1, params,
|
|
|
|
OSSL_SIGNATURE_PARAM_FIPS_DIGEST_CHECK))
|
|
|
|
return 0;
|
|
|
|
|
2020-08-29 16:03:17 +08:00
|
|
|
#if !defined(OPENSSL_NO_ACVP_TESTS)
|
2020-03-15 19:34:29 +08:00
|
|
|
p = OSSL_PARAM_locate_const(params, OSSL_SIGNATURE_PARAM_KAT);
|
|
|
|
if (p != NULL && !OSSL_PARAM_get_uint(p, &ctx->kattest))
|
|
|
|
return 0;
|
2020-06-17 09:33:16 +08:00
|
|
|
#endif
|
2020-03-15 19:34:29 +08:00
|
|
|
|
2020-11-26 13:03:10 +08:00
|
|
|
p = OSSL_PARAM_locate_const(params, OSSL_SIGNATURE_PARAM_DIGEST);
|
|
|
|
if (p != NULL) {
|
|
|
|
char mdname[OSSL_MAX_NAME_SIZE] = "", *pmdname = mdname;
|
|
|
|
char mdprops[OSSL_MAX_PROPQUERY_SIZE] = "", *pmdprops = mdprops;
|
|
|
|
const OSSL_PARAM *propsp =
|
|
|
|
OSSL_PARAM_locate_const(params,
|
|
|
|
OSSL_SIGNATURE_PARAM_PROPERTIES);
|
|
|
|
|
|
|
|
if (!OSSL_PARAM_get_utf8_string(p, &pmdname, sizeof(mdname)))
|
|
|
|
return 0;
|
|
|
|
if (propsp != NULL
|
|
|
|
&& !OSSL_PARAM_get_utf8_string(propsp, &pmdprops, sizeof(mdprops)))
|
|
|
|
return 0;
|
2024-07-01 09:36:58 +08:00
|
|
|
if (!ecdsa_setup_md(ctx, mdname, mdprops, "ECDSA Set Ctx"))
|
2020-11-26 13:03:10 +08:00
|
|
|
return 0;
|
|
|
|
}
|
2020-03-15 19:34:29 +08:00
|
|
|
|
2020-11-26 13:03:10 +08:00
|
|
|
p = OSSL_PARAM_locate_const(params, OSSL_SIGNATURE_PARAM_DIGEST_SIZE);
|
2021-07-14 21:41:22 +08:00
|
|
|
if (p != NULL) {
|
|
|
|
if (!OSSL_PARAM_get_size_t(p, &mdsize)
|
|
|
|
|| (!ctx->flag_allow_md && mdsize != ctx->mdsize))
|
|
|
|
return 0;
|
|
|
|
ctx->mdsize = mdsize;
|
|
|
|
}
|
2022-07-15 19:22:01 +08:00
|
|
|
p = OSSL_PARAM_locate_const(params, OSSL_SIGNATURE_PARAM_NONCE_TYPE);
|
|
|
|
if (p != NULL
|
|
|
|
&& !OSSL_PARAM_get_uint(p, &ctx->nonce_type))
|
|
|
|
return 0;
|
2020-03-15 19:34:29 +08:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2021-02-27 01:02:36 +08:00
|
|
|
static const OSSL_PARAM settable_ctx_params[] = {
|
2020-03-15 19:34:29 +08:00
|
|
|
OSSL_PARAM_utf8_string(OSSL_SIGNATURE_PARAM_DIGEST, NULL, 0),
|
2021-02-27 01:02:36 +08:00
|
|
|
OSSL_PARAM_size_t(OSSL_SIGNATURE_PARAM_DIGEST_SIZE, NULL),
|
2020-11-26 13:03:10 +08:00
|
|
|
OSSL_PARAM_utf8_string(OSSL_SIGNATURE_PARAM_PROPERTIES, NULL, 0),
|
2020-03-15 19:34:29 +08:00
|
|
|
OSSL_PARAM_uint(OSSL_SIGNATURE_PARAM_KAT, NULL),
|
2022-07-15 19:22:01 +08:00
|
|
|
OSSL_PARAM_uint(OSSL_SIGNATURE_PARAM_NONCE_TYPE, NULL),
|
2024-07-01 09:36:58 +08:00
|
|
|
OSSL_FIPS_IND_SETTABLE_CTX_PARAM(OSSL_SIGNATURE_PARAM_FIPS_KEY_CHECK)
|
|
|
|
OSSL_FIPS_IND_SETTABLE_CTX_PARAM(OSSL_SIGNATURE_PARAM_FIPS_DIGEST_CHECK)
|
2020-03-15 19:34:29 +08:00
|
|
|
OSSL_PARAM_END
|
|
|
|
};
|
|
|
|
|
2021-02-27 01:02:36 +08:00
|
|
|
static const OSSL_PARAM settable_ctx_params_no_digest[] = {
|
|
|
|
OSSL_PARAM_uint(OSSL_SIGNATURE_PARAM_KAT, NULL),
|
|
|
|
OSSL_PARAM_END
|
|
|
|
};
|
|
|
|
|
|
|
|
static const OSSL_PARAM *ecdsa_settable_ctx_params(void *vctx,
|
|
|
|
ossl_unused void *provctx)
|
2020-03-15 19:34:29 +08:00
|
|
|
{
|
2021-02-27 01:02:36 +08:00
|
|
|
PROV_ECDSA_CTX *ctx = (PROV_ECDSA_CTX *)vctx;
|
|
|
|
|
|
|
|
if (ctx != NULL && !ctx->flag_allow_md)
|
|
|
|
return settable_ctx_params_no_digest;
|
|
|
|
return settable_ctx_params;
|
2020-03-15 19:34:29 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static int ecdsa_get_ctx_md_params(void *vctx, OSSL_PARAM *params)
|
|
|
|
{
|
|
|
|
PROV_ECDSA_CTX *ctx = (PROV_ECDSA_CTX *)vctx;
|
|
|
|
|
|
|
|
if (ctx->mdctx == NULL)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
return EVP_MD_CTX_get_params(ctx->mdctx, params);
|
|
|
|
}
|
|
|
|
|
|
|
|
static const OSSL_PARAM *ecdsa_gettable_ctx_md_params(void *vctx)
|
|
|
|
{
|
|
|
|
PROV_ECDSA_CTX *ctx = (PROV_ECDSA_CTX *)vctx;
|
|
|
|
|
|
|
|
if (ctx->md == NULL)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
return EVP_MD_gettable_ctx_params(ctx->md);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int ecdsa_set_ctx_md_params(void *vctx, const OSSL_PARAM params[])
|
|
|
|
{
|
|
|
|
PROV_ECDSA_CTX *ctx = (PROV_ECDSA_CTX *)vctx;
|
|
|
|
|
|
|
|
if (ctx->mdctx == NULL)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
return EVP_MD_CTX_set_params(ctx->mdctx, params);
|
|
|
|
}
|
|
|
|
|
|
|
|
static const OSSL_PARAM *ecdsa_settable_ctx_md_params(void *vctx)
|
|
|
|
{
|
|
|
|
PROV_ECDSA_CTX *ctx = (PROV_ECDSA_CTX *)vctx;
|
|
|
|
|
|
|
|
if (ctx->md == NULL)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
return EVP_MD_settable_ctx_params(ctx->md);
|
|
|
|
}
|
|
|
|
|
2021-01-28 15:01:52 +08:00
|
|
|
const OSSL_DISPATCH ossl_ecdsa_signature_functions[] = {
|
2020-03-15 19:34:29 +08:00
|
|
|
{ OSSL_FUNC_SIGNATURE_NEWCTX, (void (*)(void))ecdsa_newctx },
|
2020-08-29 10:51:14 +08:00
|
|
|
{ OSSL_FUNC_SIGNATURE_SIGN_INIT, (void (*)(void))ecdsa_sign_init },
|
2020-03-15 19:34:29 +08:00
|
|
|
{ OSSL_FUNC_SIGNATURE_SIGN, (void (*)(void))ecdsa_sign },
|
2020-08-29 10:51:14 +08:00
|
|
|
{ OSSL_FUNC_SIGNATURE_VERIFY_INIT, (void (*)(void))ecdsa_verify_init },
|
2020-03-15 19:34:29 +08:00
|
|
|
{ OSSL_FUNC_SIGNATURE_VERIFY, (void (*)(void))ecdsa_verify },
|
|
|
|
{ OSSL_FUNC_SIGNATURE_DIGEST_SIGN_INIT,
|
2020-08-29 10:51:14 +08:00
|
|
|
(void (*)(void))ecdsa_digest_sign_init },
|
2020-03-15 19:34:29 +08:00
|
|
|
{ OSSL_FUNC_SIGNATURE_DIGEST_SIGN_UPDATE,
|
|
|
|
(void (*)(void))ecdsa_digest_signverify_update },
|
|
|
|
{ OSSL_FUNC_SIGNATURE_DIGEST_SIGN_FINAL,
|
|
|
|
(void (*)(void))ecdsa_digest_sign_final },
|
|
|
|
{ OSSL_FUNC_SIGNATURE_DIGEST_VERIFY_INIT,
|
2020-08-29 10:51:14 +08:00
|
|
|
(void (*)(void))ecdsa_digest_verify_init },
|
2020-03-15 19:34:29 +08:00
|
|
|
{ OSSL_FUNC_SIGNATURE_DIGEST_VERIFY_UPDATE,
|
|
|
|
(void (*)(void))ecdsa_digest_signverify_update },
|
|
|
|
{ OSSL_FUNC_SIGNATURE_DIGEST_VERIFY_FINAL,
|
|
|
|
(void (*)(void))ecdsa_digest_verify_final },
|
|
|
|
{ OSSL_FUNC_SIGNATURE_FREECTX, (void (*)(void))ecdsa_freectx },
|
|
|
|
{ OSSL_FUNC_SIGNATURE_DUPCTX, (void (*)(void))ecdsa_dupctx },
|
|
|
|
{ OSSL_FUNC_SIGNATURE_GET_CTX_PARAMS, (void (*)(void))ecdsa_get_ctx_params },
|
|
|
|
{ OSSL_FUNC_SIGNATURE_GETTABLE_CTX_PARAMS,
|
|
|
|
(void (*)(void))ecdsa_gettable_ctx_params },
|
|
|
|
{ OSSL_FUNC_SIGNATURE_SET_CTX_PARAMS, (void (*)(void))ecdsa_set_ctx_params },
|
|
|
|
{ OSSL_FUNC_SIGNATURE_SETTABLE_CTX_PARAMS,
|
|
|
|
(void (*)(void))ecdsa_settable_ctx_params },
|
|
|
|
{ OSSL_FUNC_SIGNATURE_GET_CTX_MD_PARAMS,
|
|
|
|
(void (*)(void))ecdsa_get_ctx_md_params },
|
|
|
|
{ OSSL_FUNC_SIGNATURE_GETTABLE_CTX_MD_PARAMS,
|
|
|
|
(void (*)(void))ecdsa_gettable_ctx_md_params },
|
|
|
|
{ OSSL_FUNC_SIGNATURE_SET_CTX_MD_PARAMS,
|
|
|
|
(void (*)(void))ecdsa_set_ctx_md_params },
|
|
|
|
{ OSSL_FUNC_SIGNATURE_SETTABLE_CTX_MD_PARAMS,
|
|
|
|
(void (*)(void))ecdsa_settable_ctx_md_params },
|
2023-04-19 22:08:22 +08:00
|
|
|
OSSL_DISPATCH_END
|
2020-03-15 19:34:29 +08:00
|
|
|
};
|