summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2020-02-08 12:12:28 -0500
committerJeffrey Walton <noloader@gmail.com>2020-02-08 12:12:28 -0500
commitea4208c50d512beb2130b5bb7b3fc97f4edc5a9d (patch)
tree48057cbe3e8995f9f88b4c3b2ceef2997945cb7d
parent57160861bb3c047e5a7bfa54c760dc8497542776 (diff)
downloadcryptopp-git-ea4208c50d512beb2130b5bb7b3fc97f4edc5a9d.tar.gz
Whitespace check-in
-rw-r--r--ec2n.cpp16
-rw-r--r--ecp.cpp16
2 files changed, 16 insertions, 16 deletions
diff --git a/ec2n.cpp b/ec2n.cpp
index 7b6cf451..e58869ba 100644
--- a/ec2n.cpp
+++ b/ec2n.cpp
@@ -16,16 +16,16 @@ ANONYMOUS_NAMESPACE_BEGIN
using CryptoPP::EC2N;
#if defined(HAVE_GCC_INIT_PRIORITY)
- #define INIT_ATTRIBUTE __attribute__ ((init_priority (CRYPTOPP_INIT_PRIORITY + 51)))
- const EC2N::Point g_identity INIT_ATTRIBUTE = EC2N::Point();
+ #define INIT_ATTRIBUTE __attribute__ ((init_priority (CRYPTOPP_INIT_PRIORITY + 51)))
+ const EC2N::Point g_identity INIT_ATTRIBUTE = EC2N::Point();
#elif defined(HAVE_MSC_INIT_PRIORITY)
- #pragma warning(disable: 4075)
- #pragma init_seg(".CRT$XCU")
- const EC2N::Point g_identity;
- #pragma warning(default: 4075)
+ #pragma warning(disable: 4075)
+ #pragma init_seg(".CRT$XCU")
+ const EC2N::Point g_identity;
+ #pragma warning(default: 4075)
#elif defined(HAVE_XLC_INIT_PRIORITY)
- #pragma priority(290)
- const EC2N::Point g_identity;
+ #pragma priority(290)
+ const EC2N::Point g_identity;
#endif
ANONYMOUS_NAMESPACE_END
diff --git a/ecp.cpp b/ecp.cpp
index 1a3a244f..c649aba6 100644
--- a/ecp.cpp
+++ b/ecp.cpp
@@ -19,16 +19,16 @@ using CryptoPP::Integer;
using CryptoPP::ModularArithmetic;
#if defined(HAVE_GCC_INIT_PRIORITY)
- #define INIT_ATTRIBUTE __attribute__ ((init_priority (CRYPTOPP_INIT_PRIORITY + 50)))
- const ECP::Point g_identity INIT_ATTRIBUTE = ECP::Point();
+ #define INIT_ATTRIBUTE __attribute__ ((init_priority (CRYPTOPP_INIT_PRIORITY + 50)))
+ const ECP::Point g_identity INIT_ATTRIBUTE = ECP::Point();
#elif defined(HAVE_MSC_INIT_PRIORITY)
- #pragma warning(disable: 4075)
- #pragma init_seg(".CRT$XCU")
- const ECP::Point g_identity;
- #pragma warning(default: 4075)
+ #pragma warning(disable: 4075)
+ #pragma init_seg(".CRT$XCU")
+ const ECP::Point g_identity;
+ #pragma warning(default: 4075)
#elif defined(HAVE_XLC_INIT_PRIORITY)
- #pragma priority(290)
- const ECP::Point g_identity;
+ #pragma priority(290)
+ const ECP::Point g_identity;
#endif
inline ECP::Point ToMontgomery(const ModularArithmetic &mr, const ECP::Point &P)