/src/openssl/crypto/sm2/sm2_key.c
Line  | Count  | Source (jump to first uncovered line)  | 
1  |  | /*  | 
2  |  |  * Copyright 2020-2021 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  |  | #include "internal/deprecated.h" /* to be able to use EC_KEY and EC_GROUP */  | 
11  |  |  | 
12  |  | #include <openssl/err.h>  | 
13  |  | #include "crypto/sm2err.h"  | 
14  |  | #include "crypto/sm2.h"  | 
15  |  | #include <openssl/ec.h> /* EC_KEY and EC_GROUP functions */  | 
16  |  |  | 
17  |  | /*  | 
18  |  |  * SM2 key generation is implemented within ec_generate_key() in  | 
19  |  |  * crypto/ec/ec_key.c  | 
20  |  |  */  | 
21  |  |  | 
22  |  | int ossl_sm2_key_private_check(const EC_KEY *eckey)  | 
23  | 0  | { | 
24  | 0  |     int ret = 0;  | 
25  | 0  |     BIGNUM *max = NULL;  | 
26  | 0  |     const EC_GROUP *group = NULL;  | 
27  | 0  |     const BIGNUM *priv_key = NULL, *order = NULL;  | 
28  |  | 
  | 
29  | 0  |     if (eckey == NULL  | 
30  | 0  |             || (group = EC_KEY_get0_group(eckey)) == NULL  | 
31  | 0  |             || (priv_key = EC_KEY_get0_private_key(eckey)) == NULL  | 
32  | 0  |             || (order = EC_GROUP_get0_order(group)) == NULL) { | 
33  | 0  |         ERR_raise(ERR_LIB_SM2, ERR_R_PASSED_NULL_PARAMETER);  | 
34  | 0  |         return 0;  | 
35  | 0  |     }  | 
36  |  |  | 
37  |  |     /* range of SM2 private key is [1, n-1) */  | 
38  | 0  |     max = BN_dup(order);  | 
39  | 0  |     if (max == NULL || !BN_sub_word(max, 1))  | 
40  | 0  |         goto end;  | 
41  | 0  |     if (BN_cmp(priv_key, BN_value_one()) < 0  | 
42  | 0  |         || BN_cmp(priv_key, max) >= 0) { | 
43  | 0  |         ERR_raise(ERR_LIB_SM2, SM2_R_INVALID_PRIVATE_KEY);  | 
44  | 0  |         goto end;  | 
45  | 0  |     }  | 
46  | 0  |     ret = 1;  | 
47  |  | 
  | 
48  | 0  |  end:  | 
49  | 0  |     BN_free(max);  | 
50  | 0  |     return ret;  | 
51  | 0  | }  |