sm2_key.c 1.4 KB

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