diff options
author | tb <> | 2022-11-26 17:23:18 +0000 |
---|---|---|
committer | tb <> | 2022-11-26 17:23:18 +0000 |
commit | 246954626bd75b061be0645ab9659db51b2c4e38 (patch) | |
tree | d2f78bc27178372f03f15f36ae93b967a1e203d7 /src/lib/libcrypto/sm2 | |
parent | db814f9b2a52dd12a467bdc126ab9750901835bb (diff) | |
download | openbsd-246954626bd75b061be0645ab9659db51b2c4e38.tar.gz openbsd-246954626bd75b061be0645ab9659db51b2c4e38.tar.bz2 openbsd-246954626bd75b061be0645ab9659db51b2c4e38.zip |
Make header guards of internal headers consistent
Not all of them, only those that didn't leak into a public header...
Yes.
Diffstat (limited to 'src/lib/libcrypto/sm2')
-rw-r--r-- | src/lib/libcrypto/sm2/sm2_local.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/lib/libcrypto/sm2/sm2_local.h b/src/lib/libcrypto/sm2/sm2_local.h index c934263190..ad97f2c771 100644 --- a/src/lib/libcrypto/sm2/sm2_local.h +++ b/src/lib/libcrypto/sm2/sm2_local.h | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: sm2_local.h,v 1.1 2022/11/26 16:08:54 tb Exp $ */ | 1 | /* $OpenBSD: sm2_local.h,v 1.2 2022/11/26 17:23:18 tb Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2017, 2019 Ribose Inc | 3 | * Copyright (c) 2017, 2019 Ribose Inc |
4 | * | 4 | * |
@@ -15,8 +15,8 @@ | |||
15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | 15 | * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
16 | */ | 16 | */ |
17 | 17 | ||
18 | #ifndef HEADER_SM2_LOCL_H | 18 | #ifndef HEADER_SM2_LOCAL_H |
19 | #define HEADER_SM2_LOCL_H | 19 | #define HEADER_SM2_LOCAL_H |
20 | 20 | ||
21 | #include <openssl/ec.h> | 21 | #include <openssl/ec.h> |
22 | #include <openssl/ecdsa.h> | 22 | #include <openssl/ecdsa.h> |
@@ -39,5 +39,4 @@ int sm2_do_verify(const EC_KEY *key, const EVP_MD *digest, | |||
39 | 39 | ||
40 | __END_HIDDEN_DECLS | 40 | __END_HIDDEN_DECLS |
41 | 41 | ||
42 | #endif | 42 | #endif /* !HEADER_SM2_LOCAL_H */ |
43 | |||