sm2_sig.c 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573
  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 implemetation 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 termine 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 compuation 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->propq);
  276. OPENSSL_free(ctx->id);
  277. OPENSSL_free(ctx);
  278. }
  279. static void *sm2sig_dupctx(void *vpsm2ctx)
  280. {
  281. PROV_SM2_CTX *srcctx = (PROV_SM2_CTX *)vpsm2ctx;
  282. PROV_SM2_CTX *dstctx;
  283. dstctx = OPENSSL_zalloc(sizeof(*srcctx));
  284. if (dstctx == NULL)
  285. return NULL;
  286. *dstctx = *srcctx;
  287. dstctx->ec = NULL;
  288. dstctx->propq = NULL;
  289. dstctx->md = NULL;
  290. dstctx->mdctx = NULL;
  291. dstctx->id = NULL;
  292. if (srcctx->ec != NULL && !EC_KEY_up_ref(srcctx->ec))
  293. goto err;
  294. dstctx->ec = srcctx->ec;
  295. if (srcctx->propq != NULL) {
  296. dstctx->propq = OPENSSL_strdup(srcctx->propq);
  297. if (dstctx->propq == NULL)
  298. goto err;
  299. }
  300. if (srcctx->md != NULL && !EVP_MD_up_ref(srcctx->md))
  301. goto err;
  302. dstctx->md = srcctx->md;
  303. if (srcctx->mdctx != NULL) {
  304. dstctx->mdctx = EVP_MD_CTX_new();
  305. if (dstctx->mdctx == NULL
  306. || !EVP_MD_CTX_copy_ex(dstctx->mdctx, srcctx->mdctx))
  307. goto err;
  308. }
  309. if (srcctx->id != NULL) {
  310. dstctx->id = OPENSSL_malloc(srcctx->id_len);
  311. if (dstctx->id == NULL)
  312. goto err;
  313. dstctx->id_len = srcctx->id_len;
  314. memcpy(dstctx->id, srcctx->id, srcctx->id_len);
  315. }
  316. return dstctx;
  317. err:
  318. sm2sig_freectx(dstctx);
  319. return NULL;
  320. }
  321. static int sm2sig_get_ctx_params(void *vpsm2ctx, OSSL_PARAM *params)
  322. {
  323. PROV_SM2_CTX *psm2ctx = (PROV_SM2_CTX *)vpsm2ctx;
  324. OSSL_PARAM *p;
  325. if (psm2ctx == NULL)
  326. return 0;
  327. p = OSSL_PARAM_locate(params, OSSL_SIGNATURE_PARAM_ALGORITHM_ID);
  328. if (p != NULL
  329. && !OSSL_PARAM_set_octet_string(p, psm2ctx->aid, psm2ctx->aid_len))
  330. return 0;
  331. p = OSSL_PARAM_locate(params, OSSL_SIGNATURE_PARAM_DIGEST_SIZE);
  332. if (p != NULL && !OSSL_PARAM_set_size_t(p, psm2ctx->mdsize))
  333. return 0;
  334. p = OSSL_PARAM_locate(params, OSSL_SIGNATURE_PARAM_DIGEST);
  335. if (p != NULL && !OSSL_PARAM_set_utf8_string(p, psm2ctx->md == NULL
  336. ? psm2ctx->mdname
  337. : EVP_MD_get0_name(psm2ctx->md)))
  338. return 0;
  339. return 1;
  340. }
  341. static const OSSL_PARAM known_gettable_ctx_params[] = {
  342. OSSL_PARAM_octet_string(OSSL_SIGNATURE_PARAM_ALGORITHM_ID, NULL, 0),
  343. OSSL_PARAM_size_t(OSSL_SIGNATURE_PARAM_DIGEST_SIZE, NULL),
  344. OSSL_PARAM_utf8_string(OSSL_SIGNATURE_PARAM_DIGEST, NULL, 0),
  345. OSSL_PARAM_END
  346. };
  347. static const OSSL_PARAM *sm2sig_gettable_ctx_params(ossl_unused void *vpsm2ctx,
  348. ossl_unused void *provctx)
  349. {
  350. return known_gettable_ctx_params;
  351. }
  352. static int sm2sig_set_ctx_params(void *vpsm2ctx, const OSSL_PARAM params[])
  353. {
  354. PROV_SM2_CTX *psm2ctx = (PROV_SM2_CTX *)vpsm2ctx;
  355. const OSSL_PARAM *p;
  356. size_t mdsize;
  357. if (psm2ctx == NULL)
  358. return 0;
  359. if (params == NULL)
  360. return 1;
  361. p = OSSL_PARAM_locate_const(params, OSSL_PKEY_PARAM_DIST_ID);
  362. if (p != NULL) {
  363. void *tmp_id = NULL;
  364. size_t tmp_idlen = 0;
  365. /*
  366. * If the 'z' digest has already been computed, the ID is set too late
  367. */
  368. if (!psm2ctx->flag_compute_z_digest)
  369. return 0;
  370. if (p->data_size != 0
  371. && !OSSL_PARAM_get_octet_string(p, &tmp_id, 0, &tmp_idlen))
  372. return 0;
  373. OPENSSL_free(psm2ctx->id);
  374. psm2ctx->id = tmp_id;
  375. psm2ctx->id_len = tmp_idlen;
  376. }
  377. /*
  378. * The following code checks that the size is the same as the SM3 digest
  379. * size returning an error otherwise.
  380. * If there is ever any different digest algorithm allowed with SM2
  381. * this needs to be adjusted accordingly.
  382. */
  383. p = OSSL_PARAM_locate_const(params, OSSL_SIGNATURE_PARAM_DIGEST_SIZE);
  384. if (p != NULL && (!OSSL_PARAM_get_size_t(p, &mdsize)
  385. || mdsize != psm2ctx->mdsize))
  386. return 0;
  387. p = OSSL_PARAM_locate_const(params, OSSL_SIGNATURE_PARAM_DIGEST);
  388. if (p != NULL) {
  389. char *mdname = NULL;
  390. if (!OSSL_PARAM_get_utf8_string(p, &mdname, 0))
  391. return 0;
  392. if (!sm2sig_set_mdname(psm2ctx, mdname)) {
  393. OPENSSL_free(mdname);
  394. return 0;
  395. }
  396. OPENSSL_free(mdname);
  397. }
  398. return 1;
  399. }
  400. static const OSSL_PARAM known_settable_ctx_params[] = {
  401. OSSL_PARAM_size_t(OSSL_SIGNATURE_PARAM_DIGEST_SIZE, NULL),
  402. OSSL_PARAM_utf8_string(OSSL_SIGNATURE_PARAM_DIGEST, NULL, 0),
  403. OSSL_PARAM_octet_string(OSSL_PKEY_PARAM_DIST_ID, NULL, 0),
  404. OSSL_PARAM_END
  405. };
  406. static const OSSL_PARAM *sm2sig_settable_ctx_params(ossl_unused void *vpsm2ctx,
  407. ossl_unused void *provctx)
  408. {
  409. return known_settable_ctx_params;
  410. }
  411. static int sm2sig_get_ctx_md_params(void *vpsm2ctx, OSSL_PARAM *params)
  412. {
  413. PROV_SM2_CTX *psm2ctx = (PROV_SM2_CTX *)vpsm2ctx;
  414. if (psm2ctx->mdctx == NULL)
  415. return 0;
  416. return EVP_MD_CTX_get_params(psm2ctx->mdctx, params);
  417. }
  418. static const OSSL_PARAM *sm2sig_gettable_ctx_md_params(void *vpsm2ctx)
  419. {
  420. PROV_SM2_CTX *psm2ctx = (PROV_SM2_CTX *)vpsm2ctx;
  421. if (psm2ctx->md == NULL)
  422. return 0;
  423. return EVP_MD_gettable_ctx_params(psm2ctx->md);
  424. }
  425. static int sm2sig_set_ctx_md_params(void *vpsm2ctx, const OSSL_PARAM params[])
  426. {
  427. PROV_SM2_CTX *psm2ctx = (PROV_SM2_CTX *)vpsm2ctx;
  428. if (psm2ctx->mdctx == NULL)
  429. return 0;
  430. return EVP_MD_CTX_set_params(psm2ctx->mdctx, params);
  431. }
  432. static const OSSL_PARAM *sm2sig_settable_ctx_md_params(void *vpsm2ctx)
  433. {
  434. PROV_SM2_CTX *psm2ctx = (PROV_SM2_CTX *)vpsm2ctx;
  435. if (psm2ctx->md == NULL)
  436. return 0;
  437. return EVP_MD_settable_ctx_params(psm2ctx->md);
  438. }
  439. const OSSL_DISPATCH ossl_sm2_signature_functions[] = {
  440. { OSSL_FUNC_SIGNATURE_NEWCTX, (void (*)(void))sm2sig_newctx },
  441. { OSSL_FUNC_SIGNATURE_SIGN_INIT, (void (*)(void))sm2sig_signature_init },
  442. { OSSL_FUNC_SIGNATURE_SIGN, (void (*)(void))sm2sig_sign },
  443. { OSSL_FUNC_SIGNATURE_VERIFY_INIT, (void (*)(void))sm2sig_signature_init },
  444. { OSSL_FUNC_SIGNATURE_VERIFY, (void (*)(void))sm2sig_verify },
  445. { OSSL_FUNC_SIGNATURE_DIGEST_SIGN_INIT,
  446. (void (*)(void))sm2sig_digest_signverify_init },
  447. { OSSL_FUNC_SIGNATURE_DIGEST_SIGN_UPDATE,
  448. (void (*)(void))sm2sig_digest_signverify_update },
  449. { OSSL_FUNC_SIGNATURE_DIGEST_SIGN_FINAL,
  450. (void (*)(void))sm2sig_digest_sign_final },
  451. { OSSL_FUNC_SIGNATURE_DIGEST_VERIFY_INIT,
  452. (void (*)(void))sm2sig_digest_signverify_init },
  453. { OSSL_FUNC_SIGNATURE_DIGEST_VERIFY_UPDATE,
  454. (void (*)(void))sm2sig_digest_signverify_update },
  455. { OSSL_FUNC_SIGNATURE_DIGEST_VERIFY_FINAL,
  456. (void (*)(void))sm2sig_digest_verify_final },
  457. { OSSL_FUNC_SIGNATURE_FREECTX, (void (*)(void))sm2sig_freectx },
  458. { OSSL_FUNC_SIGNATURE_DUPCTX, (void (*)(void))sm2sig_dupctx },
  459. { OSSL_FUNC_SIGNATURE_GET_CTX_PARAMS, (void (*)(void))sm2sig_get_ctx_params },
  460. { OSSL_FUNC_SIGNATURE_GETTABLE_CTX_PARAMS,
  461. (void (*)(void))sm2sig_gettable_ctx_params },
  462. { OSSL_FUNC_SIGNATURE_SET_CTX_PARAMS, (void (*)(void))sm2sig_set_ctx_params },
  463. { OSSL_FUNC_SIGNATURE_SETTABLE_CTX_PARAMS,
  464. (void (*)(void))sm2sig_settable_ctx_params },
  465. { OSSL_FUNC_SIGNATURE_GET_CTX_MD_PARAMS,
  466. (void (*)(void))sm2sig_get_ctx_md_params },
  467. { OSSL_FUNC_SIGNATURE_GETTABLE_CTX_MD_PARAMS,
  468. (void (*)(void))sm2sig_gettable_ctx_md_params },
  469. { OSSL_FUNC_SIGNATURE_SET_CTX_MD_PARAMS,
  470. (void (*)(void))sm2sig_set_ctx_md_params },
  471. { OSSL_FUNC_SIGNATURE_SETTABLE_CTX_MD_PARAMS,
  472. (void (*)(void))sm2sig_settable_ctx_md_params },
  473. { 0, NULL }
  474. };