/src/openssl32/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 | 27 | { |
24 | 27 | int ret = 0; |
25 | 27 | BIGNUM *max = NULL; |
26 | 27 | const EC_GROUP *group = NULL; |
27 | 27 | const BIGNUM *priv_key = NULL, *order = NULL; |
28 | | |
29 | 27 | if (eckey == NULL |
30 | 27 | || (group = EC_KEY_get0_group(eckey)) == NULL |
31 | 27 | || (priv_key = EC_KEY_get0_private_key(eckey)) == NULL |
32 | 27 | || (order = EC_GROUP_get0_order(group)) == NULL) { |
33 | 4 | ERR_raise(ERR_LIB_SM2, ERR_R_PASSED_NULL_PARAMETER); |
34 | 4 | return 0; |
35 | 4 | } |
36 | | |
37 | | /* range of SM2 private key is [1, n-1) */ |
38 | 23 | max = BN_dup(order); |
39 | 23 | if (max == NULL || !BN_sub_word(max, 1)) |
40 | 0 | goto end; |
41 | 23 | if (BN_cmp(priv_key, BN_value_one()) < 0 |
42 | 23 | || BN_cmp(priv_key, max) >= 0) { |
43 | 17 | ERR_raise(ERR_LIB_SM2, SM2_R_INVALID_PRIVATE_KEY); |
44 | 17 | goto end; |
45 | 17 | } |
46 | 6 | ret = 1; |
47 | | |
48 | 23 | end: |
49 | 23 | BN_free(max); |
50 | 23 | return ret; |
51 | 6 | } |