diff options
author | Jack Lloyd <jack.lloyd@ribose.com> | 2018-04-06 15:45:41 +0200 |
---|---|---|
committer | Matt Caswell <matt@openssl.org> | 2018-06-04 12:59:40 +0200 |
commit | e425f90fffd33786b6d45b46b67dc8bb61baecc7 (patch) | |
tree | ccfa1b6a799a793a86ca0fd8dfe277c8a5641a90 /crypto/ec | |
parent | sha/asm/sha512p8-ppc.pl: improve POWER9 performance by ~10%. (diff) | |
download | openssl-e425f90fffd33786b6d45b46b67dc8bb61baecc7.tar.xz openssl-e425f90fffd33786b6d45b46b67dc8bb61baecc7.zip |
Make SM2 functions private
Address issue #5670
Reviewed-by: Richard Levitte <levitte@openssl.org>
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/6386)
Diffstat (limited to 'crypto/ec')
-rw-r--r-- | crypto/ec/ec_pmeth.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/ec/ec_pmeth.c b/crypto/ec/ec_pmeth.c index b4105c20f2..eefe2d0cd5 100644 --- a/crypto/ec/ec_pmeth.c +++ b/crypto/ec/ec_pmeth.c @@ -17,7 +17,7 @@ #include "internal/evp_int.h" #if !defined(OPENSSL_NO_SM2) -# include <openssl/sm2.h> +# include "internal/sm2.h" #endif /* EC pkey context structure */ |