2
0

sm2_sig.c 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564
  1. /*
  2. * Copyright 2020-2022 The OpenSSL Project Authors. All Rights Reserved.
  3. *
  4. * Licensed under the Apache License 2.0 (the "License"). You may not use
  5. * this file except in compliance with the License. You can obtain a copy
  6. * in the file LICENSE in the source distribution or at
  7. * https://www.openssl.org/source/license.html
  8. */
  9. /*
  10. * ECDSA low level APIs are deprecated for public use, but still ok for
  11. * internal use - SM2 implementation uses ECDSA_size() function.
  12. */
  13. #include "internal/deprecated.h"
  14. #include <string.h> /* memcpy */
  15. #include <openssl/crypto.h>
  16. #include <openssl/core_dispatch.h>
  17. #include <openssl/core_names.h>
  18. #include <openssl/dsa.h>
  19. #include <openssl/params.h>
  20. #include <openssl/evp.h>
  21. #include <openssl/err.h>
  22. #include <openssl/proverr.h>
  23. #include "internal/nelem.h"
  24. #include "internal/sizes.h"
  25. #include "internal/cryptlib.h"
  26. #include "internal/sm3.h"
  27. #include "prov/implementations.h"
  28. #include "prov/providercommon.h"
  29. #include "prov/provider_ctx.h"
  30. #include "crypto/ec.h"
  31. #include "crypto/sm2.h"
  32. #include "prov/der_sm2.h"
  33. static OSSL_FUNC_signature_newctx_fn sm2sig_newctx;
  34. static OSSL_FUNC_signature_sign_init_fn sm2sig_signature_init;
  35. static OSSL_FUNC_signature_verify_init_fn sm2sig_signature_init;
  36. static OSSL_FUNC_signature_sign_fn sm2sig_sign;
  37. static OSSL_FUNC_signature_verify_fn sm2sig_verify;
  38. static OSSL_FUNC_signature_digest_sign_init_fn sm2sig_digest_signverify_init;
  39. static OSSL_FUNC_signature_digest_sign_update_fn sm2sig_digest_signverify_update;
  40. static OSSL_FUNC_signature_digest_sign_final_fn sm2sig_digest_sign_final;
  41. static OSSL_FUNC_signature_digest_verify_init_fn sm2sig_digest_signverify_init;
  42. static OSSL_FUNC_signature_digest_verify_update_fn sm2sig_digest_signverify_update;
  43. static OSSL_FUNC_signature_digest_verify_final_fn sm2sig_digest_verify_final;
  44. static OSSL_FUNC_signature_freectx_fn sm2sig_freectx;
  45. static OSSL_FUNC_signature_dupctx_fn sm2sig_dupctx;
  46. static OSSL_FUNC_signature_get_ctx_params_fn sm2sig_get_ctx_params;
  47. static OSSL_FUNC_signature_gettable_ctx_params_fn sm2sig_gettable_ctx_params;
  48. static OSSL_FUNC_signature_set_ctx_params_fn sm2sig_set_ctx_params;
  49. static OSSL_FUNC_signature_settable_ctx_params_fn sm2sig_settable_ctx_params;
  50. static OSSL_FUNC_signature_get_ctx_md_params_fn sm2sig_get_ctx_md_params;
  51. static OSSL_FUNC_signature_gettable_ctx_md_params_fn sm2sig_gettable_ctx_md_params;
  52. static OSSL_FUNC_signature_set_ctx_md_params_fn sm2sig_set_ctx_md_params;
  53. static OSSL_FUNC_signature_settable_ctx_md_params_fn sm2sig_settable_ctx_md_params;
  54. /*
  55. * What's passed as an actual key is defined by the KEYMGMT interface.
  56. * We happen to know that our KEYMGMT simply passes EC structures, so
  57. * we use that here too.
  58. */
  59. typedef struct {
  60. OSSL_LIB_CTX *libctx;
  61. char *propq;
  62. EC_KEY *ec;
  63. /*
  64. * Flag to determine if the 'z' digest needs to be computed and fed to the
  65. * hash function.
  66. * This flag should be set on initialization and the computation should
  67. * be performed only once, on first update.
  68. */
  69. unsigned int flag_compute_z_digest : 1;
  70. char mdname[OSSL_MAX_NAME_SIZE];
  71. /* The Algorithm Identifier of the combined signature algorithm */
  72. unsigned char aid_buf[OSSL_MAX_ALGORITHM_ID_SIZE];
  73. unsigned char *aid;
  74. size_t aid_len;
  75. /* main digest */
  76. EVP_MD *md;
  77. EVP_MD_CTX *mdctx;
  78. size_t mdsize;
  79. /* SM2 ID used for calculating the Z value */
  80. unsigned char *id;
  81. size_t id_len;
  82. } PROV_SM2_CTX;
  83. static int sm2sig_set_mdname(PROV_SM2_CTX *psm2ctx, const char *mdname)
  84. {
  85. if (psm2ctx->md == NULL) /* We need an SM3 md to compare with */
  86. psm2ctx->md = EVP_MD_fetch(psm2ctx->libctx, psm2ctx->mdname,
  87. psm2ctx->propq);
  88. if (psm2ctx->md == NULL)
  89. return 0;
  90. if (mdname == NULL)
  91. return 1;
  92. if (strlen(mdname) >= sizeof(psm2ctx->mdname)
  93. || !EVP_MD_is_a(psm2ctx->md, mdname)) {
  94. ERR_raise_data(ERR_LIB_PROV, PROV_R_INVALID_DIGEST, "digest=%s",
  95. mdname);
  96. return 0;
  97. }
  98. OPENSSL_strlcpy(psm2ctx->mdname, mdname, sizeof(psm2ctx->mdname));
  99. return 1;
  100. }
  101. static void *sm2sig_newctx(void *provctx, const char *propq)
  102. {
  103. PROV_SM2_CTX *ctx = OPENSSL_zalloc(sizeof(PROV_SM2_CTX));
  104. if (ctx == NULL)
  105. return NULL;
  106. ctx->libctx = PROV_LIBCTX_OF(provctx);
  107. if (propq != NULL && (ctx->propq = OPENSSL_strdup(propq)) == NULL) {
  108. OPENSSL_free(ctx);
  109. ERR_raise(ERR_LIB_PROV, ERR_R_MALLOC_FAILURE);
  110. return NULL;
  111. }
  112. ctx->mdsize = SM3_DIGEST_LENGTH;
  113. strcpy(ctx->mdname, OSSL_DIGEST_NAME_SM3);
  114. return ctx;
  115. }
  116. static int sm2sig_signature_init(void *vpsm2ctx, void *ec,
  117. const OSSL_PARAM params[])
  118. {
  119. PROV_SM2_CTX *psm2ctx = (PROV_SM2_CTX *)vpsm2ctx;
  120. if (!ossl_prov_is_running()
  121. || psm2ctx == NULL)
  122. return 0;
  123. if (ec == NULL && psm2ctx->ec == NULL) {
  124. ERR_raise(ERR_LIB_PROV, PROV_R_NO_KEY_SET);
  125. return 0;
  126. }
  127. if (ec != NULL) {
  128. if (!EC_KEY_up_ref(ec))
  129. return 0;
  130. EC_KEY_free(psm2ctx->ec);
  131. psm2ctx->ec = ec;
  132. }
  133. return sm2sig_set_ctx_params(psm2ctx, params);
  134. }
  135. static int sm2sig_sign(void *vpsm2ctx, unsigned char *sig, size_t *siglen,
  136. size_t sigsize, const unsigned char *tbs, size_t tbslen)
  137. {
  138. PROV_SM2_CTX *ctx = (PROV_SM2_CTX *)vpsm2ctx;
  139. int ret;
  140. unsigned int sltmp;
  141. /* SM2 uses ECDSA_size as well */
  142. size_t ecsize = ECDSA_size(ctx->ec);
  143. if (sig == NULL) {
  144. *siglen = ecsize;
  145. return 1;
  146. }
  147. if (sigsize < (size_t)ecsize)
  148. return 0;
  149. if (ctx->mdsize != 0 && tbslen != ctx->mdsize)
  150. return 0;
  151. ret = ossl_sm2_internal_sign(tbs, tbslen, sig, &sltmp, ctx->ec);
  152. if (ret <= 0)
  153. return 0;
  154. *siglen = sltmp;
  155. return 1;
  156. }
  157. static int sm2sig_verify(void *vpsm2ctx, const unsigned char *sig, size_t siglen,
  158. const unsigned char *tbs, size_t tbslen)
  159. {
  160. PROV_SM2_CTX *ctx = (PROV_SM2_CTX *)vpsm2ctx;
  161. if (ctx->mdsize != 0 && tbslen != ctx->mdsize)
  162. return 0;
  163. return ossl_sm2_internal_verify(tbs, tbslen, sig, siglen, ctx->ec);
  164. }
  165. static void free_md(PROV_SM2_CTX *ctx)
  166. {
  167. EVP_MD_CTX_free(ctx->mdctx);
  168. EVP_MD_free(ctx->md);
  169. ctx->mdctx = NULL;
  170. ctx->md = NULL;
  171. }
  172. static int sm2sig_digest_signverify_init(void *vpsm2ctx, const char *mdname,
  173. void *ec, const OSSL_PARAM params[])
  174. {
  175. PROV_SM2_CTX *ctx = (PROV_SM2_CTX *)vpsm2ctx;
  176. int md_nid;
  177. WPACKET pkt;
  178. int ret = 0;
  179. if (!sm2sig_signature_init(vpsm2ctx, ec, params)
  180. || !sm2sig_set_mdname(ctx, mdname))
  181. return ret;
  182. if (ctx->mdctx == NULL) {
  183. ctx->mdctx = EVP_MD_CTX_new();
  184. if (ctx->mdctx == NULL)
  185. goto error;
  186. }
  187. md_nid = EVP_MD_get_type(ctx->md);
  188. /*
  189. * We do not care about DER writing errors.
  190. * All it really means is that for some reason, there's no
  191. * AlgorithmIdentifier to be had, but the operation itself is
  192. * still valid, just as long as it's not used to construct
  193. * anything that needs an AlgorithmIdentifier.
  194. */
  195. ctx->aid_len = 0;
  196. if (WPACKET_init_der(&pkt, ctx->aid_buf, sizeof(ctx->aid_buf))
  197. && ossl_DER_w_algorithmIdentifier_SM2_with_MD(&pkt, -1, ctx->ec, md_nid)
  198. && WPACKET_finish(&pkt)) {
  199. WPACKET_get_total_written(&pkt, &ctx->aid_len);
  200. ctx->aid = WPACKET_get_curr(&pkt);
  201. }
  202. WPACKET_cleanup(&pkt);
  203. if (!EVP_DigestInit_ex2(ctx->mdctx, ctx->md, params))
  204. goto error;
  205. ctx->flag_compute_z_digest = 1;
  206. ret = 1;
  207. error:
  208. return ret;
  209. }
  210. static int sm2sig_compute_z_digest(PROV_SM2_CTX *ctx)
  211. {
  212. uint8_t *z = NULL;
  213. int ret = 1;
  214. if (ctx->flag_compute_z_digest) {
  215. /* Only do this once */
  216. ctx->flag_compute_z_digest = 0;
  217. if ((z = OPENSSL_zalloc(ctx->mdsize)) == NULL
  218. /* get hashed prefix 'z' of tbs message */
  219. || !ossl_sm2_compute_z_digest(z, ctx->md, ctx->id, ctx->id_len,
  220. ctx->ec)
  221. || !EVP_DigestUpdate(ctx->mdctx, z, ctx->mdsize))
  222. ret = 0;
  223. OPENSSL_free(z);
  224. }
  225. return ret;
  226. }
  227. int sm2sig_digest_signverify_update(void *vpsm2ctx, const unsigned char *data,
  228. size_t datalen)
  229. {
  230. PROV_SM2_CTX *psm2ctx = (PROV_SM2_CTX *)vpsm2ctx;
  231. if (psm2ctx == NULL || psm2ctx->mdctx == NULL)
  232. return 0;
  233. return sm2sig_compute_z_digest(psm2ctx)
  234. && EVP_DigestUpdate(psm2ctx->mdctx, data, datalen);
  235. }
  236. int sm2sig_digest_sign_final(void *vpsm2ctx, unsigned char *sig, size_t *siglen,
  237. size_t sigsize)
  238. {
  239. PROV_SM2_CTX *psm2ctx = (PROV_SM2_CTX *)vpsm2ctx;
  240. unsigned char digest[EVP_MAX_MD_SIZE];
  241. unsigned int dlen = 0;
  242. if (psm2ctx == NULL || psm2ctx->mdctx == NULL)
  243. return 0;
  244. /*
  245. * If sig is NULL then we're just finding out the sig size. Other fields
  246. * are ignored. Defer to sm2sig_sign.
  247. */
  248. if (sig != NULL) {
  249. if (!(sm2sig_compute_z_digest(psm2ctx)
  250. && EVP_DigestFinal_ex(psm2ctx->mdctx, digest, &dlen)))
  251. return 0;
  252. }
  253. return sm2sig_sign(vpsm2ctx, sig, siglen, sigsize, digest, (size_t)dlen);
  254. }
  255. int sm2sig_digest_verify_final(void *vpsm2ctx, const unsigned char *sig,
  256. size_t siglen)
  257. {
  258. PROV_SM2_CTX *psm2ctx = (PROV_SM2_CTX *)vpsm2ctx;
  259. unsigned char digest[EVP_MAX_MD_SIZE];
  260. unsigned int dlen = 0;
  261. if (psm2ctx == NULL
  262. || psm2ctx->mdctx == NULL
  263. || EVP_MD_get_size(psm2ctx->md) > (int)sizeof(digest))
  264. return 0;
  265. if (!(sm2sig_compute_z_digest(psm2ctx)
  266. && EVP_DigestFinal_ex(psm2ctx->mdctx, digest, &dlen)))
  267. return 0;
  268. return sm2sig_verify(vpsm2ctx, sig, siglen, digest, (size_t)dlen);
  269. }
  270. static void sm2sig_freectx(void *vpsm2ctx)
  271. {
  272. PROV_SM2_CTX *ctx = (PROV_SM2_CTX *)vpsm2ctx;
  273. free_md(ctx);
  274. EC_KEY_free(ctx->ec);
  275. OPENSSL_free(ctx->id);
  276. OPENSSL_free(ctx);
  277. }
  278. static void *sm2sig_dupctx(void *vpsm2ctx)
  279. {
  280. PROV_SM2_CTX *srcctx = (PROV_SM2_CTX *)vpsm2ctx;
  281. PROV_SM2_CTX *dstctx;
  282. dstctx = OPENSSL_zalloc(sizeof(*srcctx));
  283. if (dstctx == NULL)
  284. return NULL;
  285. *dstctx = *srcctx;
  286. dstctx->ec = NULL;
  287. dstctx->md = NULL;
  288. dstctx->mdctx = NULL;
  289. if (srcctx->ec != NULL && !EC_KEY_up_ref(srcctx->ec))
  290. goto err;
  291. dstctx->ec = srcctx->ec;
  292. if (srcctx->md != NULL && !EVP_MD_up_ref(srcctx->md))
  293. goto err;
  294. dstctx->md = srcctx->md;
  295. if (srcctx->mdctx != NULL) {
  296. dstctx->mdctx = EVP_MD_CTX_new();
  297. if (dstctx->mdctx == NULL
  298. || !EVP_MD_CTX_copy_ex(dstctx->mdctx, srcctx->mdctx))
  299. goto err;
  300. }
  301. if (srcctx->id != NULL) {
  302. dstctx->id = OPENSSL_malloc(srcctx->id_len);
  303. if (dstctx->id == NULL)
  304. goto err;
  305. dstctx->id_len = srcctx->id_len;
  306. memcpy(dstctx->id, srcctx->id, srcctx->id_len);
  307. }
  308. return dstctx;
  309. err:
  310. sm2sig_freectx(dstctx);
  311. return NULL;
  312. }
  313. static int sm2sig_get_ctx_params(void *vpsm2ctx, OSSL_PARAM *params)
  314. {
  315. PROV_SM2_CTX *psm2ctx = (PROV_SM2_CTX *)vpsm2ctx;
  316. OSSL_PARAM *p;
  317. if (psm2ctx == NULL)
  318. return 0;
  319. p = OSSL_PARAM_locate(params, OSSL_SIGNATURE_PARAM_ALGORITHM_ID);
  320. if (p != NULL
  321. && !OSSL_PARAM_set_octet_string(p, psm2ctx->aid, psm2ctx->aid_len))
  322. return 0;
  323. p = OSSL_PARAM_locate(params, OSSL_SIGNATURE_PARAM_DIGEST_SIZE);
  324. if (p != NULL && !OSSL_PARAM_set_size_t(p, psm2ctx->mdsize))
  325. return 0;
  326. p = OSSL_PARAM_locate(params, OSSL_SIGNATURE_PARAM_DIGEST);
  327. if (p != NULL && !OSSL_PARAM_set_utf8_string(p, psm2ctx->md == NULL
  328. ? psm2ctx->mdname
  329. : EVP_MD_get0_name(psm2ctx->md)))
  330. return 0;
  331. return 1;
  332. }
  333. static const OSSL_PARAM known_gettable_ctx_params[] = {
  334. OSSL_PARAM_octet_string(OSSL_SIGNATURE_PARAM_ALGORITHM_ID, NULL, 0),
  335. OSSL_PARAM_size_t(OSSL_SIGNATURE_PARAM_DIGEST_SIZE, NULL),
  336. OSSL_PARAM_utf8_string(OSSL_SIGNATURE_PARAM_DIGEST, NULL, 0),
  337. OSSL_PARAM_END
  338. };
  339. static const OSSL_PARAM *sm2sig_gettable_ctx_params(ossl_unused void *vpsm2ctx,
  340. ossl_unused void *provctx)
  341. {
  342. return known_gettable_ctx_params;
  343. }
  344. static int sm2sig_set_ctx_params(void *vpsm2ctx, const OSSL_PARAM params[])
  345. {
  346. PROV_SM2_CTX *psm2ctx = (PROV_SM2_CTX *)vpsm2ctx;
  347. const OSSL_PARAM *p;
  348. size_t mdsize;
  349. if (psm2ctx == NULL)
  350. return 0;
  351. if (params == NULL)
  352. return 1;
  353. p = OSSL_PARAM_locate_const(params, OSSL_PKEY_PARAM_DIST_ID);
  354. if (p != NULL) {
  355. void *tmp_id = NULL;
  356. size_t tmp_idlen = 0;
  357. /*
  358. * If the 'z' digest has already been computed, the ID is set too late
  359. */
  360. if (!psm2ctx->flag_compute_z_digest)
  361. return 0;
  362. if (p->data_size != 0
  363. && !OSSL_PARAM_get_octet_string(p, &tmp_id, 0, &tmp_idlen))
  364. return 0;
  365. OPENSSL_free(psm2ctx->id);
  366. psm2ctx->id = tmp_id;
  367. psm2ctx->id_len = tmp_idlen;
  368. }
  369. /*
  370. * The following code checks that the size is the same as the SM3 digest
  371. * size returning an error otherwise.
  372. * If there is ever any different digest algorithm allowed with SM2
  373. * this needs to be adjusted accordingly.
  374. */
  375. p = OSSL_PARAM_locate_const(params, OSSL_SIGNATURE_PARAM_DIGEST_SIZE);
  376. if (p != NULL && (!OSSL_PARAM_get_size_t(p, &mdsize)
  377. || mdsize != psm2ctx->mdsize))
  378. return 0;
  379. p = OSSL_PARAM_locate_const(params, OSSL_SIGNATURE_PARAM_DIGEST);
  380. if (p != NULL) {
  381. char *mdname = NULL;
  382. if (!OSSL_PARAM_get_utf8_string(p, &mdname, 0))
  383. return 0;
  384. if (!sm2sig_set_mdname(psm2ctx, mdname)) {
  385. OPENSSL_free(mdname);
  386. return 0;
  387. }
  388. OPENSSL_free(mdname);
  389. }
  390. return 1;
  391. }
  392. static const OSSL_PARAM known_settable_ctx_params[] = {
  393. OSSL_PARAM_size_t(OSSL_SIGNATURE_PARAM_DIGEST_SIZE, NULL),
  394. OSSL_PARAM_utf8_string(OSSL_SIGNATURE_PARAM_DIGEST, NULL, 0),
  395. OSSL_PARAM_octet_string(OSSL_PKEY_PARAM_DIST_ID, NULL, 0),
  396. OSSL_PARAM_END
  397. };
  398. static const OSSL_PARAM *sm2sig_settable_ctx_params(ossl_unused void *vpsm2ctx,
  399. ossl_unused void *provctx)
  400. {
  401. return known_settable_ctx_params;
  402. }
  403. static int sm2sig_get_ctx_md_params(void *vpsm2ctx, OSSL_PARAM *params)
  404. {
  405. PROV_SM2_CTX *psm2ctx = (PROV_SM2_CTX *)vpsm2ctx;
  406. if (psm2ctx->mdctx == NULL)
  407. return 0;
  408. return EVP_MD_CTX_get_params(psm2ctx->mdctx, params);
  409. }
  410. static const OSSL_PARAM *sm2sig_gettable_ctx_md_params(void *vpsm2ctx)
  411. {
  412. PROV_SM2_CTX *psm2ctx = (PROV_SM2_CTX *)vpsm2ctx;
  413. if (psm2ctx->md == NULL)
  414. return 0;
  415. return EVP_MD_gettable_ctx_params(psm2ctx->md);
  416. }
  417. static int sm2sig_set_ctx_md_params(void *vpsm2ctx, const OSSL_PARAM params[])
  418. {
  419. PROV_SM2_CTX *psm2ctx = (PROV_SM2_CTX *)vpsm2ctx;
  420. if (psm2ctx->mdctx == NULL)
  421. return 0;
  422. return EVP_MD_CTX_set_params(psm2ctx->mdctx, params);
  423. }
  424. static const OSSL_PARAM *sm2sig_settable_ctx_md_params(void *vpsm2ctx)
  425. {
  426. PROV_SM2_CTX *psm2ctx = (PROV_SM2_CTX *)vpsm2ctx;
  427. if (psm2ctx->md == NULL)
  428. return 0;
  429. return EVP_MD_settable_ctx_params(psm2ctx->md);
  430. }
  431. const OSSL_DISPATCH ossl_sm2_signature_functions[] = {
  432. { OSSL_FUNC_SIGNATURE_NEWCTX, (void (*)(void))sm2sig_newctx },
  433. { OSSL_FUNC_SIGNATURE_SIGN_INIT, (void (*)(void))sm2sig_signature_init },
  434. { OSSL_FUNC_SIGNATURE_SIGN, (void (*)(void))sm2sig_sign },
  435. { OSSL_FUNC_SIGNATURE_VERIFY_INIT, (void (*)(void))sm2sig_signature_init },
  436. { OSSL_FUNC_SIGNATURE_VERIFY, (void (*)(void))sm2sig_verify },
  437. { OSSL_FUNC_SIGNATURE_DIGEST_SIGN_INIT,
  438. (void (*)(void))sm2sig_digest_signverify_init },
  439. { OSSL_FUNC_SIGNATURE_DIGEST_SIGN_UPDATE,
  440. (void (*)(void))sm2sig_digest_signverify_update },
  441. { OSSL_FUNC_SIGNATURE_DIGEST_SIGN_FINAL,
  442. (void (*)(void))sm2sig_digest_sign_final },
  443. { OSSL_FUNC_SIGNATURE_DIGEST_VERIFY_INIT,
  444. (void (*)(void))sm2sig_digest_signverify_init },
  445. { OSSL_FUNC_SIGNATURE_DIGEST_VERIFY_UPDATE,
  446. (void (*)(void))sm2sig_digest_signverify_update },
  447. { OSSL_FUNC_SIGNATURE_DIGEST_VERIFY_FINAL,
  448. (void (*)(void))sm2sig_digest_verify_final },
  449. { OSSL_FUNC_SIGNATURE_FREECTX, (void (*)(void))sm2sig_freectx },
  450. { OSSL_FUNC_SIGNATURE_DUPCTX, (void (*)(void))sm2sig_dupctx },
  451. { OSSL_FUNC_SIGNATURE_GET_CTX_PARAMS, (void (*)(void))sm2sig_get_ctx_params },
  452. { OSSL_FUNC_SIGNATURE_GETTABLE_CTX_PARAMS,
  453. (void (*)(void))sm2sig_gettable_ctx_params },
  454. { OSSL_FUNC_SIGNATURE_SET_CTX_PARAMS, (void (*)(void))sm2sig_set_ctx_params },
  455. { OSSL_FUNC_SIGNATURE_SETTABLE_CTX_PARAMS,
  456. (void (*)(void))sm2sig_settable_ctx_params },
  457. { OSSL_FUNC_SIGNATURE_GET_CTX_MD_PARAMS,
  458. (void (*)(void))sm2sig_get_ctx_md_params },
  459. { OSSL_FUNC_SIGNATURE_GETTABLE_CTX_MD_PARAMS,
  460. (void (*)(void))sm2sig_gettable_ctx_md_params },
  461. { OSSL_FUNC_SIGNATURE_SET_CTX_MD_PARAMS,
  462. (void (*)(void))sm2sig_set_ctx_md_params },
  463. { OSSL_FUNC_SIGNATURE_SETTABLE_CTX_MD_PARAMS,
  464. (void (*)(void))sm2sig_settable_ctx_md_params },
  465. { 0, NULL }
  466. };