sm2_sign.c 9.3 KB
Newer Older
J
Jack Lloyd 已提交
1
/*
M
Matt Caswell 已提交
2
 * Copyright 2017-2018 The OpenSSL Project Authors. All Rights Reserved.
J
Jack Lloyd 已提交
3 4 5 6 7 8 9 10 11
 * Copyright 2017 Ribose Inc. All Rights Reserved.
 * Ported from Ribose contributions from Botan.
 *
 * Licensed under the OpenSSL license (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
 */

J
Jack Lloyd 已提交
12
#include "internal/sm2.h"
J
Jack Lloyd 已提交
13 14
#include "internal/sm2err.h"
#include <openssl/err.h>
J
Jack Lloyd 已提交
15
#include <openssl/evp.h>
J
Jack Lloyd 已提交
16
#include <openssl/err.h>
J
Jack Lloyd 已提交
17 18 19
#include <openssl/bn.h>
#include <string.h>

J
Jack Lloyd 已提交
20 21 22 23
static BIGNUM *SM2_compute_msg_hash(const EVP_MD *digest,
                                    const EC_KEY *key,
                                    const char *user_id,
                                    const uint8_t *msg, size_t msg_len)
J
Jack Lloyd 已提交
24 25 26 27 28 29
{
    EVP_MD_CTX *hash = EVP_MD_CTX_new();
    const int md_size = EVP_MD_size(digest);
    uint8_t *za = OPENSSL_zalloc(md_size);
    BIGNUM *e = NULL;

30
    if (hash == NULL || za == NULL) {
J
Jack Lloyd 已提交
31
        SM2err(SM2_F_SM2_COMPUTE_MSG_HASH, ERR_R_MALLOC_FAILURE);
J
Jack Lloyd 已提交
32
        goto done;
33
    }
J
Jack Lloyd 已提交
34

35 36
    if (md_size < 0) {
        SM2err(SM2_F_SM2_COMPUTE_MSG_HASH, SM2_R_INVALID_DIGEST);
J
Jack Lloyd 已提交
37
        goto done;
38
    }
J
Jack Lloyd 已提交
39

40 41
    if (!SM2_compute_userid_digest(za, digest, user_id, key)) {
        /* SM2err already called */
J
Jack Lloyd 已提交
42
        goto done;
43
    }
J
Jack Lloyd 已提交
44

45 46 47 48 49
    if (!EVP_DigestInit(hash, digest)
            || !EVP_DigestUpdate(hash, za, md_size)
            || !EVP_DigestUpdate(hash, msg, msg_len)
               /* reuse za buffer to hold H(ZA || M) */
            || !EVP_DigestFinal(hash, za, NULL)) {
J
Jack Lloyd 已提交
50
        SM2err(SM2_F_SM2_COMPUTE_MSG_HASH, ERR_R_EVP_LIB);
J
Jack Lloyd 已提交
51
        goto done;
52
    }
J
Jack Lloyd 已提交
53 54

    e = BN_bin2bn(za, md_size, NULL);
55 56
    if (e == NULL)
        SM2err(SM2_F_SM2_COMPUTE_MSG_HASH, ERR_R_INTERNAL_ERROR);
J
Jack Lloyd 已提交
57 58 59 60 61 62 63

 done:
    OPENSSL_free(za);
    EVP_MD_CTX_free(hash);
    return e;
}

64
static ECDSA_SIG *SM2_sig_gen(const EC_KEY *key, const BIGNUM *e)
J
Jack Lloyd 已提交
65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
{
    const BIGNUM *dA = EC_KEY_get0_private_key(key);
    const EC_GROUP *group = EC_KEY_get0_group(key);
    const BIGNUM *order = EC_GROUP_get0_order(group);
    ECDSA_SIG *sig = NULL;
    EC_POINT *kG = NULL;
    BN_CTX *ctx = NULL;
    BIGNUM *k = NULL;
    BIGNUM *rk = NULL;
    BIGNUM *r = NULL;
    BIGNUM *s = NULL;
    BIGNUM *x1 = NULL;
    BIGNUM *tmp = NULL;

    kG = EC_POINT_new(group);
    ctx = BN_CTX_new();
81
    if (kG == NULL || ctx == NULL) {
J
Jack Lloyd 已提交
82
        SM2err(SM2_F_SM2_SIG_GEN, ERR_R_MALLOC_FAILURE);
J
Jack Lloyd 已提交
83
        goto done;
84
    }
J
Jack Lloyd 已提交
85 86


87
    BN_CTX_start(ctx);
J
Jack Lloyd 已提交
88 89 90 91
    k = BN_CTX_get(ctx);
    rk = BN_CTX_get(ctx);
    x1 = BN_CTX_get(ctx);
    tmp = BN_CTX_get(ctx);
92 93
    if (tmp == NULL) {
        SM2err(SM2_F_SM2_SIG_GEN, ERR_R_MALLOC_FAILURE);
J
Jack Lloyd 已提交
94
        goto done;
95
    }
J
Jack Lloyd 已提交
96

97 98 99 100
    /*
     * These values are returned and so should not be allocated out of the
     * context
     */
J
Jack Lloyd 已提交
101 102 103
    r = BN_new();
    s = BN_new();

104
    if (r == NULL || s == NULL) {
J
Jack Lloyd 已提交
105
        SM2err(SM2_F_SM2_SIG_GEN, ERR_R_MALLOC_FAILURE);
J
Jack Lloyd 已提交
106
        goto done;
107
    }
J
Jack Lloyd 已提交
108 109

    for (;;) {
110 111 112 113
        if (!BN_priv_rand_range(k, order)) {
            SM2err(SM2_F_SM2_SIG_GEN, ERR_R_INTERNAL_ERROR);
                goto done;
        }
J
Jack Lloyd 已提交
114

115 116 117 118 119
        if (!EC_POINT_mul(group, kG, k, NULL, NULL, ctx)
                || !EC_POINT_get_affine_coordinates_GFp(group, kG, x1, NULL,
                                                        ctx)
                || !BN_mod_add(r, e, x1, order, ctx)) {
            SM2err(SM2_F_SM2_SIG_GEN, ERR_R_INTERNAL_ERROR);
J
Jack Lloyd 已提交
120
            goto done;
121
        }
J
Jack Lloyd 已提交
122 123 124 125 126

        /* try again if r == 0 or r+k == n */
        if (BN_is_zero(r))
            continue;

127 128 129 130
        if (!BN_add(rk, r, k)) {
            SM2err(SM2_F_SM2_SIG_GEN, ERR_R_INTERNAL_ERROR);
            goto done;
        }
J
Jack Lloyd 已提交
131 132 133 134

        if (BN_cmp(rk, order) == 0)
            continue;

135 136 137 138 139 140 141 142
        if (!BN_add(s, dA, BN_value_one())
                || !BN_mod_inverse(s, s, order, ctx)
                || !BN_mod_mul(tmp, dA, r, order, ctx)
                || !BN_sub(tmp, k, tmp)
                || !BN_mod_mul(s, s, tmp, order, ctx)) {
            SM2err(SM2_F_SM2_SIG_GEN, ERR_R_BN_LIB);
            goto done;
        }
J
Jack Lloyd 已提交
143 144

        sig = ECDSA_SIG_new();
145
        if (sig == NULL) {
J
Jack Lloyd 已提交
146
            SM2err(SM2_F_SM2_SIG_GEN, ERR_R_MALLOC_FAILURE);
J
Jack Lloyd 已提交
147
            goto done;
148
        }
J
Jack Lloyd 已提交
149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165

         /* takes ownership of r and s */
        ECDSA_SIG_set0(sig, r, s);
        break;
    }

 done:
    if (sig == NULL) {
        BN_free(r);
        BN_free(s);
    }

    BN_CTX_free(ctx);
    EC_POINT_free(kG);
    return sig;
}

166 167
static int SM2_sig_verify(const EC_KEY *key, const ECDSA_SIG *sig,
                          const BIGNUM *e)
J
Jack Lloyd 已提交
168 169 170 171 172 173 174 175 176 177 178 179 180
{
    int ret = 0;
    const EC_GROUP *group = EC_KEY_get0_group(key);
    const BIGNUM *order = EC_GROUP_get0_order(group);
    BN_CTX *ctx = NULL;
    EC_POINT *pt = NULL;
    BIGNUM *t = NULL;
    BIGNUM *x1 = NULL;
    const BIGNUM *r = NULL;
    const BIGNUM *s = NULL;

    ctx = BN_CTX_new();
    pt = EC_POINT_new(group);
181
    if (ctx == NULL || pt == NULL) {
J
Jack Lloyd 已提交
182
        SM2err(SM2_F_SM2_SIG_VERIFY, ERR_R_MALLOC_FAILURE);
J
Jack Lloyd 已提交
183
        goto done;
184
    }
J
Jack Lloyd 已提交
185 186 187 188

    BN_CTX_start(ctx);
    t = BN_CTX_get(ctx);
    x1 = BN_CTX_get(ctx);
189 190 191 192
    if (x1 == NULL) {
        SM2err(SM2_F_SM2_SIG_VERIFY, ERR_R_MALLOC_FAILURE);
        goto done;
    }
J
Jack Lloyd 已提交
193 194

    /*
195 196 197 198 199 200 201
     * B1: verify whether r' in [1,n-1], verification failed if not
     * B2: vefify whether s' in [1,n-1], verification failed if not
     * B3: set M'~=ZA || M'
     * B4: calculate e'=Hv(M'~)
     * B5: calculate t = (r' + s') modn, verification failed if t=0
     * B6: calculate the point (x1', y1')=[s']G + [t]PA
     * B7: calculate R=(e'+x1') modn, verfication pass if yes, otherwise failed
J
Jack Lloyd 已提交
202 203 204 205
     */

    ECDSA_SIG_get0(sig, &r, &s);

206 207 208 209
    if (BN_cmp(r, BN_value_one()) < 0
            || BN_cmp(s, BN_value_one()) < 0
            || BN_cmp(order, r) <= 0
            || BN_cmp(order, s) <= 0) {
J
Jack Lloyd 已提交
210
        SM2err(SM2_F_SM2_SIG_VERIFY, SM2_R_BAD_SIGNATURE);
J
Jack Lloyd 已提交
211
        goto done;
212
    }
J
Jack Lloyd 已提交
213

214
    if (!BN_mod_add(t, r, s, order, ctx)) {
J
Jack Lloyd 已提交
215
        SM2err(SM2_F_SM2_SIG_VERIFY, ERR_R_BN_LIB);
J
Jack Lloyd 已提交
216
        goto done;
217
    }
J
Jack Lloyd 已提交
218

219
    if (BN_is_zero(t)) {
J
Jack Lloyd 已提交
220
        SM2err(SM2_F_SM2_SIG_VERIFY, SM2_R_BAD_SIGNATURE);
J
Jack Lloyd 已提交
221
        goto done;
222
    }
J
Jack Lloyd 已提交
223

224 225
    if (!EC_POINT_mul(group, pt, s, EC_KEY_get0_public_key(key), t, ctx)
            || !EC_POINT_get_affine_coordinates_GFp(group, pt, x1, NULL, ctx)) {
J
Jack Lloyd 已提交
226
        SM2err(SM2_F_SM2_SIG_VERIFY, ERR_R_EC_LIB);
J
Jack Lloyd 已提交
227
        goto done;
228
    }
J
Jack Lloyd 已提交
229

230
    if (!BN_mod_add(t, e, x1, order, ctx)) {
J
Jack Lloyd 已提交
231
        SM2err(SM2_F_SM2_SIG_VERIFY, ERR_R_BN_LIB);
J
Jack Lloyd 已提交
232
        goto done;
233
    }
J
Jack Lloyd 已提交
234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250

    if (BN_cmp(r, t) == 0)
        ret = 1;

 done:
    EC_POINT_free(pt);
    BN_CTX_free(ctx);
    return ret;
}

ECDSA_SIG *SM2_do_sign(const EC_KEY *key,
                       const EVP_MD *digest,
                       const char *user_id, const uint8_t *msg, size_t msg_len)
{
    BIGNUM *e = NULL;
    ECDSA_SIG *sig = NULL;

J
Jack Lloyd 已提交
251
    e = SM2_compute_msg_hash(digest, key, user_id, msg, msg_len);
252 253
    if (e == NULL) {
        /* SM2err already called */
J
Jack Lloyd 已提交
254
        goto done;
255
    }
J
Jack Lloyd 已提交
256 257 258 259 260 261 262 263 264 265 266 267 268 269

    sig = SM2_sig_gen(key, e);

 done:
    BN_free(e);
    return sig;
}

int SM2_do_verify(const EC_KEY *key,
                  const EVP_MD *digest,
                  const ECDSA_SIG *sig,
                  const char *user_id, const uint8_t *msg, size_t msg_len)
{
    BIGNUM *e = NULL;
270
    int ret = 0;
J
Jack Lloyd 已提交
271

J
Jack Lloyd 已提交
272
    e = SM2_compute_msg_hash(digest, key, user_id, msg, msg_len);
273 274
    if (e == NULL) {
        /* SM2err already called */
J
Jack Lloyd 已提交
275
        goto done;
276
    }
J
Jack Lloyd 已提交
277 278 279 280 281 282 283 284 285 286 287 288 289

    ret = SM2_sig_verify(key, sig, e);

 done:
    BN_free(e);
    return ret;
}

int SM2_sign(int type, const unsigned char *dgst, int dgstlen,
             unsigned char *sig, unsigned int *siglen, EC_KEY *eckey)
{
    BIGNUM *e = NULL;
    ECDSA_SIG *s = NULL;
290
    int sigleni;
J
Jack Lloyd 已提交
291 292
    int ret = -1;

293
    if (type != NID_sm3 || dgstlen != 32) {
J
Jack Lloyd 已提交
294 295
       SM2err(SM2_F_SM2_SIGN, SM2_R_INVALID_DIGEST_TYPE);
       goto done;
296
   }
J
Jack Lloyd 已提交
297 298

    e = BN_bin2bn(dgst, dgstlen, NULL);
299 300 301 302
    if (e == NULL) {
       SM2err(SM2_F_SM2_SIGN, ERR_R_BN_LIB);
       goto done;
    }
J
Jack Lloyd 已提交
303 304 305

    s = SM2_sig_gen(eckey, e);

306 307 308 309 310 311
    sigleni = i2d_ECDSA_SIG(s, &sig);
    if (sigleni < 0) {
       SM2err(SM2_F_SM2_SIGN, ERR_R_INTERNAL_ERROR);
       goto done;
    }
    *siglen = (unsigned int)sigleni;
J
Jack Lloyd 已提交
312

313
    ret = 1;
J
Jack Lloyd 已提交
314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330

 done:
    ECDSA_SIG_free(s);
    BN_free(e);
    return ret;
}

int SM2_verify(int type, const unsigned char *dgst, int dgstlen,
               const unsigned char *sig, int sig_len, EC_KEY *eckey)
{
    ECDSA_SIG *s = NULL;
    BIGNUM *e = NULL;
    const unsigned char *p = sig;
    unsigned char *der = NULL;
    int derlen = -1;
    int ret = -1;

331
    if (type != NID_sm3) {
J
Jack Lloyd 已提交
332 333
       SM2err(SM2_F_SM2_VERIFY, SM2_R_INVALID_DIGEST_TYPE);
       goto done;
334
   }
J
Jack Lloyd 已提交
335 336

    s = ECDSA_SIG_new();
337
    if (s == NULL) {
J
Jack Lloyd 已提交
338
        SM2err(SM2_F_SM2_VERIFY, ERR_R_MALLOC_FAILURE);
J
Jack Lloyd 已提交
339
        goto done;
340 341
    }
    if (d2i_ECDSA_SIG(&s, &p, sig_len) == NULL) {
J
Jack Lloyd 已提交
342
        SM2err(SM2_F_SM2_VERIFY, SM2_R_INVALID_ENCODING);
J
Jack Lloyd 已提交
343
        goto done;
344
    }
J
Jack Lloyd 已提交
345 346
    /* Ensure signature uses DER and doesn't have trailing garbage */
    derlen = i2d_ECDSA_SIG(s, &der);
347
    if (derlen != sig_len || memcmp(sig, der, derlen) != 0) {
J
Jack Lloyd 已提交
348
        SM2err(SM2_F_SM2_VERIFY, SM2_R_INVALID_ENCODING);
J
Jack Lloyd 已提交
349
        goto done;
350
    }
J
Jack Lloyd 已提交
351 352

    e = BN_bin2bn(dgst, dgstlen, NULL);
353 354 355 356
    if (e == NULL) {
        SM2err(SM2_F_SM2_VERIFY, ERR_R_BN_LIB);
        goto done;
    }
J
Jack Lloyd 已提交
357 358 359 360 361 362 363 364 365

    ret = SM2_sig_verify(eckey, s, e);

 done:
    OPENSSL_free(der);
    BN_free(e);
    ECDSA_SIG_free(s);
    return ret;
}