Commit e425f90f authored by Jack Lloyd's avatar Jack Lloyd Committed by Matt Caswell
Browse files

Make SM2 functions private

parent c4d9ef4c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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 */
+1 −1
Original line number Diff line number Diff line
@@ -32,7 +32,7 @@ L CMS include/openssl/cms.h crypto/cms/cms_err.c
L CT            include/openssl/ct.h            crypto/ct/ct_err.c
L ASYNC         include/openssl/async.h         crypto/async/async_err.c
L KDF           include/openssl/kdf.h           crypto/kdf/kdf_err.c
L SM2           include/openssl/sm2.h           crypto/sm2/sm2_err.c
L SM2           crypto/include/internal/sm2.h   crypto/sm2/sm2_err.c
L OSSL_STORE    include/openssl/store.h         crypto/store/store_err.c

# additional header files to be scanned for function names
+0 −0

File moved.

+1 −1
Original line number Diff line number Diff line
@@ -9,7 +9,7 @@
 * https://www.openssl.org/source/license.html
 */

#include <openssl/sm2.h>
#include "internal/sm2.h"
#include <openssl/evp.h>
#include <openssl/bn.h>
#include <openssl/asn1.h>
Loading