]> git.ipfire.org Git - thirdparty/openssl.git/blame - crypto/sm2/sm2_crypt.c
Fix external symbols related to ec & sm2 keys
[thirdparty/openssl.git] / crypto / sm2 / sm2_crypt.c
CommitLineData
3d328a44 1/*
33388b44 2 * Copyright 2017-2020 The OpenSSL Project Authors. All Rights Reserved.
3d328a44
JL
3 * Copyright 2017 Ribose Inc. All Rights Reserved.
4 * Ported from Ribose contributions from Botan.
5 *
f9f859ad 6 * Licensed under the Apache License 2.0 (the "License"). You may not use
3d328a44
JL
7 * this file except in compliance with the License. You can obtain a copy
8 * in the file LICENSE in the source distribution or at
9 * https://www.openssl.org/source/license.html
10 */
11
579422c8
P
12/*
13 * ECDSA low level APIs are deprecated for public use, but still ok for
14 * internal use.
15 */
16#include "internal/deprecated.h"
17
25f2138b
DMSP
18#include "crypto/sm2.h"
19#include "crypto/sm2err.h"
32ab57cb 20#include "crypto/ec.h" /* ossl_ecdh_kdf_X9_63() */
2398404e 21#include <openssl/err.h>
3d328a44
JL
22#include <openssl/evp.h>
23#include <openssl/bn.h>
24#include <openssl/asn1.h>
25#include <openssl/asn1t.h>
26#include <string.h>
27
28typedef struct SM2_Ciphertext_st SM2_Ciphertext;
29DECLARE_ASN1_FUNCTIONS(SM2_Ciphertext)
30
31struct SM2_Ciphertext_st {
32 BIGNUM *C1x;
33 BIGNUM *C1y;
34 ASN1_OCTET_STRING *C3;
35 ASN1_OCTET_STRING *C2;
36};
37
38ASN1_SEQUENCE(SM2_Ciphertext) = {
39 ASN1_SIMPLE(SM2_Ciphertext, C1x, BIGNUM),
40 ASN1_SIMPLE(SM2_Ciphertext, C1y, BIGNUM),
41 ASN1_SIMPLE(SM2_Ciphertext, C3, ASN1_OCTET_STRING),
42 ASN1_SIMPLE(SM2_Ciphertext, C2, ASN1_OCTET_STRING),
43} ASN1_SEQUENCE_END(SM2_Ciphertext)
44
45IMPLEMENT_ASN1_FUNCTIONS(SM2_Ciphertext)
46
2167239a 47static size_t ec_field_size(const EC_GROUP *group)
3d328a44
JL
48{
49 /* Is there some simpler way to do this? */
50 BIGNUM *p = BN_new();
51 BIGNUM *a = BN_new();
52 BIGNUM *b = BN_new();
53 size_t field_size = 0;
54
55 if (p == NULL || a == NULL || b == NULL)
56 goto done;
57
9cc570d4 58 if (!EC_GROUP_get_curve(group, p, a, b, NULL))
bdd92f4d 59 goto done;
3d328a44
JL
60 field_size = (BN_num_bits(p) + 7) / 8;
61
62 done:
63 BN_free(p);
64 BN_free(a);
65 BN_free(b);
66
67 return field_size;
68}
69
32ab57cb
SL
70int ossl_sm2_plaintext_size(const EC_KEY *key, const EVP_MD *digest,
71 size_t msg_len, size_t *pt_size)
4e664750 72{
2167239a 73 const size_t field_size = ec_field_size(EC_KEY_get0_group(key));
e14d6cf6
MC
74 const int md_size = EVP_MD_size(digest);
75 size_t overhead;
4e664750 76
e14d6cf6 77 if (md_size < 0) {
9311d0c4 78 ERR_raise(ERR_LIB_SM2, SM2_R_INVALID_DIGEST);
e14d6cf6
MC
79 return 0;
80 }
81 if (field_size == 0) {
9311d0c4 82 ERR_raise(ERR_LIB_SM2, SM2_R_INVALID_FIELD);
e14d6cf6
MC
83 return 0;
84 }
4e664750 85
e14d6cf6 86 overhead = 10 + 2 * field_size + (size_t)md_size;
245be530 87 if (msg_len <= overhead) {
9311d0c4 88 ERR_raise(ERR_LIB_SM2, SM2_R_INVALID_ENCODING);
e14d6cf6
MC
89 return 0;
90 }
91
92 *pt_size = msg_len - overhead;
93 return 1;
4e664750
JL
94}
95
32ab57cb
SL
96int ossl_sm2_ciphertext_size(const EC_KEY *key, const EVP_MD *digest,
97 size_t msg_len, size_t *ct_size)
3d328a44 98{
2167239a 99 const size_t field_size = ec_field_size(EC_KEY_get0_group(key));
e14d6cf6 100 const int md_size = EVP_MD_size(digest);
307a494e 101 size_t sz;
e14d6cf6
MC
102
103 if (field_size == 0 || md_size < 0)
104 return 0;
105
307a494e 106 /* Integer and string are simple type; set constructed = 0, means primitive and definite length encoding. */
107 sz = 2 * ASN1_object_size(0, field_size + 1, V_ASN1_INTEGER)
108 + ASN1_object_size(0, md_size, V_ASN1_OCTET_STRING)
109 + ASN1_object_size(0, msg_len, V_ASN1_OCTET_STRING);
110 /* Sequence is structured type; set constructed = 1, means constructed and definite length encoding. */
111 *ct_size = ASN1_object_size(1, sz, V_ASN1_SEQUENCE);
112
e14d6cf6 113 return 1;
3d328a44
JL
114}
115
32ab57cb
SL
116int ossl_sm2_encrypt(const EC_KEY *key,
117 const EVP_MD *digest,
118 const uint8_t *msg, size_t msg_len,
119 uint8_t *ciphertext_buf, size_t *ciphertext_len)
3d328a44 120{
44d3845d 121 int rc = 0, ciphertext_leni;
3d328a44
JL
122 size_t i;
123 BN_CTX *ctx = NULL;
124 BIGNUM *k = NULL;
125 BIGNUM *x1 = NULL;
126 BIGNUM *y1 = NULL;
127 BIGNUM *x2 = NULL;
128 BIGNUM *y2 = NULL;
3d328a44 129 EVP_MD_CTX *hash = EVP_MD_CTX_new();
3d328a44
JL
130 struct SM2_Ciphertext_st ctext_struct;
131 const EC_GROUP *group = EC_KEY_get0_group(key);
132 const BIGNUM *order = EC_GROUP_get0_order(group);
133 const EC_POINT *P = EC_KEY_get0_public_key(key);
134 EC_POINT *kG = NULL;
135 EC_POINT *kP = NULL;
136 uint8_t *msg_mask = NULL;
3d328a44
JL
137 uint8_t *x2y2 = NULL;
138 uint8_t *C3 = NULL;
1829ff4b
MC
139 size_t field_size;
140 const int C3_size = EVP_MD_size(digest);
5ccada09 141 EVP_MD *fetched_digest = NULL;
32ab57cb
SL
142 OSSL_LIB_CTX *libctx = ossl_ec_key_get_libctx(key);
143 const char *propq = ossl_ec_key_get0_propq(key);
3d328a44 144
44d3845d
MC
145 /* NULL these before any "goto done" */
146 ctext_struct.C2 = NULL;
147 ctext_struct.C3 = NULL;
148
1829ff4b 149 if (hash == NULL || C3_size <= 0) {
9311d0c4 150 ERR_raise(ERR_LIB_SM2, ERR_R_INTERNAL_ERROR);
1829ff4b
MC
151 goto done;
152 }
153
154 field_size = ec_field_size(group);
155 if (field_size == 0) {
9311d0c4 156 ERR_raise(ERR_LIB_SM2, ERR_R_INTERNAL_ERROR);
44d3845d
MC
157 goto done;
158 }
3d328a44
JL
159
160 kG = EC_POINT_new(group);
161 kP = EC_POINT_new(group);
5ccada09 162 ctx = BN_CTX_new_ex(libctx);
44d3845d 163 if (kG == NULL || kP == NULL || ctx == NULL) {
9311d0c4 164 ERR_raise(ERR_LIB_SM2, ERR_R_MALLOC_FAILURE);
44d3845d
MC
165 goto done;
166 }
3d328a44
JL
167
168 BN_CTX_start(ctx);
169 k = BN_CTX_get(ctx);
170 x1 = BN_CTX_get(ctx);
171 x2 = BN_CTX_get(ctx);
172 y1 = BN_CTX_get(ctx);
173 y2 = BN_CTX_get(ctx);
174
44d3845d 175 if (y2 == NULL) {
9311d0c4 176 ERR_raise(ERR_LIB_SM2, ERR_R_BN_LIB);
2398404e 177 goto done;
44d3845d 178 }
3d328a44
JL
179
180 x2y2 = OPENSSL_zalloc(2 * field_size);
181 C3 = OPENSSL_zalloc(C3_size);
182
44d3845d 183 if (x2y2 == NULL || C3 == NULL) {
9311d0c4 184 ERR_raise(ERR_LIB_SM2, ERR_R_MALLOC_FAILURE);
2398404e 185 goto done;
44d3845d 186 }
3d328a44
JL
187
188 memset(ciphertext_buf, 0, *ciphertext_len);
189
44d3845d 190 if (!BN_priv_rand_range(k, order)) {
9311d0c4 191 ERR_raise(ERR_LIB_SM2, ERR_R_INTERNAL_ERROR);
3d328a44 192 goto done;
44d3845d 193 }
3d328a44 194
44d3845d 195 if (!EC_POINT_mul(group, kG, k, NULL, NULL, ctx)
9cc570d4 196 || !EC_POINT_get_affine_coordinates(group, kG, x1, y1, ctx)
44d3845d 197 || !EC_POINT_mul(group, kP, NULL, P, k, ctx)
9cc570d4 198 || !EC_POINT_get_affine_coordinates(group, kP, x2, y2, ctx)) {
9311d0c4 199 ERR_raise(ERR_LIB_SM2, ERR_R_EC_LIB);
3d328a44 200 goto done;
44d3845d 201 }
3d328a44 202
44d3845d
MC
203 if (BN_bn2binpad(x2, x2y2, field_size) < 0
204 || BN_bn2binpad(y2, x2y2 + field_size, field_size) < 0) {
9311d0c4 205 ERR_raise(ERR_LIB_SM2, ERR_R_INTERNAL_ERROR);
3d328a44 206 goto done;
44d3845d 207 }
3d328a44
JL
208
209 msg_mask = OPENSSL_zalloc(msg_len);
44d3845d 210 if (msg_mask == NULL) {
9311d0c4 211 ERR_raise(ERR_LIB_SM2, ERR_R_MALLOC_FAILURE);
3d328a44 212 goto done;
44d3845d 213 }
3d328a44
JL
214
215 /* X9.63 with no salt happens to match the KDF used in SM2 */
32ab57cb
SL
216 if (!ossl_ecdh_kdf_X9_63(msg_mask, msg_len, x2y2, 2 * field_size, NULL, 0,
217 digest, libctx, propq)) {
9311d0c4 218 ERR_raise(ERR_LIB_SM2, ERR_R_EVP_LIB);
3d328a44 219 goto done;
44d3845d 220 }
3d328a44
JL
221
222 for (i = 0; i != msg_len; ++i)
223 msg_mask[i] ^= msg[i];
224
5ccada09
SL
225 fetched_digest = EVP_MD_fetch(libctx, EVP_MD_name(digest), propq);
226 if (fetched_digest == NULL) {
9311d0c4 227 ERR_raise(ERR_LIB_SM2, ERR_R_INTERNAL_ERROR);
5ccada09
SL
228 goto done;
229 }
230 if (EVP_DigestInit(hash, fetched_digest) == 0
44d3845d
MC
231 || EVP_DigestUpdate(hash, x2y2, field_size) == 0
232 || EVP_DigestUpdate(hash, msg, msg_len) == 0
233 || EVP_DigestUpdate(hash, x2y2 + field_size, field_size) == 0
234 || EVP_DigestFinal(hash, C3, NULL) == 0) {
9311d0c4 235 ERR_raise(ERR_LIB_SM2, ERR_R_EVP_LIB);
3d328a44 236 goto done;
44d3845d 237 }
3d328a44
JL
238
239 ctext_struct.C1x = x1;
240 ctext_struct.C1y = y1;
241 ctext_struct.C3 = ASN1_OCTET_STRING_new();
3d328a44 242 ctext_struct.C2 = ASN1_OCTET_STRING_new();
3d328a44 243
44d3845d 244 if (ctext_struct.C3 == NULL || ctext_struct.C2 == NULL) {
9311d0c4 245 ERR_raise(ERR_LIB_SM2, ERR_R_MALLOC_FAILURE);
44d3845d
MC
246 goto done;
247 }
248 if (!ASN1_OCTET_STRING_set(ctext_struct.C3, C3, C3_size)
249 || !ASN1_OCTET_STRING_set(ctext_struct.C2, msg_mask, msg_len)) {
9311d0c4 250 ERR_raise(ERR_LIB_SM2, ERR_R_INTERNAL_ERROR);
44d3845d
MC
251 goto done;
252 }
3d328a44 253
44d3845d
MC
254 ciphertext_leni = i2d_SM2_Ciphertext(&ctext_struct, &ciphertext_buf);
255 /* Ensure cast to size_t is safe */
256 if (ciphertext_leni < 0) {
9311d0c4 257 ERR_raise(ERR_LIB_SM2, ERR_R_INTERNAL_ERROR);
44d3845d
MC
258 goto done;
259 }
260 *ciphertext_len = (size_t)ciphertext_leni;
3d328a44
JL
261
262 rc = 1;
263
264 done:
5ccada09 265 EVP_MD_free(fetched_digest);
44d3845d
MC
266 ASN1_OCTET_STRING_free(ctext_struct.C2);
267 ASN1_OCTET_STRING_free(ctext_struct.C3);
3d328a44
JL
268 OPENSSL_free(msg_mask);
269 OPENSSL_free(x2y2);
270 OPENSSL_free(C3);
271 EVP_MD_CTX_free(hash);
272 BN_CTX_free(ctx);
273 EC_POINT_free(kG);
274 EC_POINT_free(kP);
275 return rc;
276}
277
32ab57cb
SL
278int ossl_sm2_decrypt(const EC_KEY *key,
279 const EVP_MD *digest,
280 const uint8_t *ciphertext, size_t ciphertext_len,
281 uint8_t *ptext_buf, size_t *ptext_len)
3d328a44
JL
282{
283 int rc = 0;
284 int i;
3d328a44
JL
285 BN_CTX *ctx = NULL;
286 const EC_GROUP *group = EC_KEY_get0_group(key);
287 EC_POINT *C1 = NULL;
288 struct SM2_Ciphertext_st *sm2_ctext = NULL;
289 BIGNUM *x2 = NULL;
290 BIGNUM *y2 = NULL;
3d328a44
JL
291 uint8_t *x2y2 = NULL;
292 uint8_t *computed_C3 = NULL;
2167239a 293 const size_t field_size = ec_field_size(group);
3d328a44 294 const int hash_size = EVP_MD_size(digest);
3d328a44
JL
295 uint8_t *msg_mask = NULL;
296 const uint8_t *C2 = NULL;
297 const uint8_t *C3 = NULL;
298 int msg_len = 0;
299 EVP_MD_CTX *hash = NULL;
32ab57cb
SL
300 OSSL_LIB_CTX *libctx = ossl_ec_key_get_libctx(key);
301 const char *propq = ossl_ec_key_get0_propq(key);
3d328a44 302
1829ff4b 303 if (field_size == 0 || hash_size <= 0)
3d328a44
JL
304 goto done;
305
306 memset(ptext_buf, 0xFF, *ptext_len);
307
308 sm2_ctext = d2i_SM2_Ciphertext(NULL, &ciphertext, ciphertext_len);
309
245be530 310 if (sm2_ctext == NULL) {
9311d0c4 311 ERR_raise(ERR_LIB_SM2, SM2_R_ASN1_ERROR);
3d328a44 312 goto done;
245be530 313 }
3d328a44 314
245be530 315 if (sm2_ctext->C3->length != hash_size) {
9311d0c4 316 ERR_raise(ERR_LIB_SM2, SM2_R_INVALID_ENCODING);
3d328a44 317 goto done;
245be530 318 }
3d328a44
JL
319
320 C2 = sm2_ctext->C2->data;
321 C3 = sm2_ctext->C3->data;
322 msg_len = sm2_ctext->C2->length;
323
5ccada09 324 ctx = BN_CTX_new_ex(libctx);
245be530 325 if (ctx == NULL) {
9311d0c4 326 ERR_raise(ERR_LIB_SM2, ERR_R_MALLOC_FAILURE);
2398404e 327 goto done;
245be530 328 }
3d328a44
JL
329
330 BN_CTX_start(ctx);
331 x2 = BN_CTX_get(ctx);
332 y2 = BN_CTX_get(ctx);
333
245be530 334 if (y2 == NULL) {
9311d0c4 335 ERR_raise(ERR_LIB_SM2, ERR_R_BN_LIB);
2398404e 336 goto done;
245be530 337 }
3d328a44
JL
338
339 msg_mask = OPENSSL_zalloc(msg_len);
340 x2y2 = OPENSSL_zalloc(2 * field_size);
341 computed_C3 = OPENSSL_zalloc(hash_size);
342
245be530 343 if (msg_mask == NULL || x2y2 == NULL || computed_C3 == NULL) {
9311d0c4 344 ERR_raise(ERR_LIB_SM2, ERR_R_MALLOC_FAILURE);
2398404e 345 goto done;
245be530 346 }
3d328a44
JL
347
348 C1 = EC_POINT_new(group);
245be530 349 if (C1 == NULL) {
9311d0c4 350 ERR_raise(ERR_LIB_SM2, ERR_R_MALLOC_FAILURE);
3d328a44 351 goto done;
245be530 352 }
3d328a44 353
9cc570d4
MC
354 if (!EC_POINT_set_affine_coordinates(group, C1, sm2_ctext->C1x,
355 sm2_ctext->C1y, ctx)
245be530
MC
356 || !EC_POINT_mul(group, C1, NULL, C1, EC_KEY_get0_private_key(key),
357 ctx)
9cc570d4 358 || !EC_POINT_get_affine_coordinates(group, C1, x2, y2, ctx)) {
9311d0c4 359 ERR_raise(ERR_LIB_SM2, ERR_R_EC_LIB);
3d328a44 360 goto done;
245be530 361 }
3d328a44 362
245be530
MC
363 if (BN_bn2binpad(x2, x2y2, field_size) < 0
364 || BN_bn2binpad(y2, x2y2 + field_size, field_size) < 0
32ab57cb
SL
365 || !ossl_ecdh_kdf_X9_63(msg_mask, msg_len, x2y2, 2 * field_size,
366 NULL, 0, digest, libctx, propq)) {
9311d0c4 367 ERR_raise(ERR_LIB_SM2, ERR_R_INTERNAL_ERROR);
3d328a44 368 goto done;
245be530 369 }
3d328a44
JL
370
371 for (i = 0; i != msg_len; ++i)
372 ptext_buf[i] = C2[i] ^ msg_mask[i];
373
374 hash = EVP_MD_CTX_new();
245be530 375 if (hash == NULL) {
9311d0c4 376 ERR_raise(ERR_LIB_SM2, ERR_R_MALLOC_FAILURE);
2398404e 377 goto done;
245be530 378 }
3d328a44 379
245be530
MC
380 if (!EVP_DigestInit(hash, digest)
381 || !EVP_DigestUpdate(hash, x2y2, field_size)
382 || !EVP_DigestUpdate(hash, ptext_buf, msg_len)
383 || !EVP_DigestUpdate(hash, x2y2 + field_size, field_size)
384 || !EVP_DigestFinal(hash, computed_C3, NULL)) {
9311d0c4 385 ERR_raise(ERR_LIB_SM2, ERR_R_EVP_LIB);
3d328a44 386 goto done;
245be530 387 }
3d328a44 388
245be530 389 if (CRYPTO_memcmp(computed_C3, C3, hash_size) != 0) {
9311d0c4 390 ERR_raise(ERR_LIB_SM2, SM2_R_INVALID_DIGEST);
3d328a44 391 goto done;
245be530 392 }
3d328a44
JL
393
394 rc = 1;
dceb99a5 395 *ptext_len = msg_len;
3d328a44
JL
396
397 done:
3d328a44
JL
398 if (rc == 0)
399 memset(ptext_buf, 0, *ptext_len);
400
401 OPENSSL_free(msg_mask);
402 OPENSSL_free(x2y2);
403 OPENSSL_free(computed_C3);
404 EC_POINT_free(C1);
405 BN_CTX_free(ctx);
406 SM2_Ciphertext_free(sm2_ctext);
407 EVP_MD_CTX_free(hash);
408
409 return rc;
410}