From edc0952b252d29398c458dc6a5d6163ada23649d Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Thu, 16 May 2019 02:47:44 -0400 Subject: [PATCH] Whitespace check-in --- config.h | 74 ++++++++++++++++++++++++++++---------------------------- 1 file changed, 37 insertions(+), 37 deletions(-) diff --git a/config.h b/config.h index 9f3e1baa..52dd398f 100644 --- a/config.h +++ b/config.h @@ -23,10 +23,10 @@ // Sanity checks. Some processors have more than big, little and bi-endian modes. PDP mode, where order results in "4312", should // raise red flags immediately. Additionally, mis-classified machines, like (previosuly) S/390, should raise red flags immediately. #if (CRYPTOPP_BIG_ENDIAN) && defined(__GNUC__) && defined(__BYTE_ORDER__) && (__BYTE_ORDER__ != __ORDER_BIG_ENDIAN__) -# error "(CRYPTOPP_BIG_ENDIAN) is set, but __BYTE_ORDER__ is not __ORDER_BIG_ENDIAN__" +# error "CRYPTOPP_BIG_ENDIAN is set, but __BYTE_ORDER__ is not __ORDER_BIG_ENDIAN__" #endif #if (CRYPTOPP_LITTLE_ENDIAN) && defined(__GNUC__) && defined(__BYTE_ORDER__) && (__BYTE_ORDER__ != __ORDER_LITTLE_ENDIAN__) -# error "(CRYPTOPP_LITTLE_ENDIAN) is set, but __BYTE_ORDER__ is not __ORDER_LITTLE_ENDIAN__" +# error "CRYPTOPP_LITTLE_ENDIAN is set, but __BYTE_ORDER__ is not __ORDER_LITTLE_ENDIAN__" #endif // Define this if you want to disable all OS-dependent features, @@ -70,7 +70,7 @@ // Some Clang and SunCC cannot handle mixed asm with positional arguments, // where the body is Intel style with no prefix and the templates are -// AT&T style. Define this is the Makefile misdetects the configuration. +// AT&T style. Define this if the Makefile misdetects the configuration. // Also see https://bugs.llvm.org/show_bug.cgi?id=39895 . // #define CRYPTOPP_DISABLE_MIXED_ASM 1 @@ -95,40 +95,40 @@ // ***************** Less Important Settings *************** // Library version macro. Since this macro is in a header, it reflects -// the version of the library the headers came from. It is not -// necessarily the version of the library built as a shared object if -// versions are inadvertently mixed and matched. +// the version of the library the headers came from. It is not +// necessarily the version of the library built as a shared object if +// versions are inadvertently mixed and matched. #define CRYPTOPP_MAJOR 8 #define CRYPTOPP_MINOR 3 #define CRYPTOPP_REVISION 0 #define CRYPTOPP_VERSION 830 // Define this if you want to set a prefix for TestData/ and TestVectors/ -// Be sure to add the trailing slash since its simple concatenation. -// After https://github.com/weidai11/cryptopp/issues/760 the library -// should find the test vectors and data without much effort. It -// will search in "./" and "$ORIGIN/../share/cryptopp" automatically. +// Be sure to add the trailing slash since its simple concatenation. +// After https://github.com/weidai11/cryptopp/issues/760 the library +// should find the test vectors and data without much effort. It +// will search in "./" and "$ORIGIN/../share/cryptopp" automatically. #ifndef CRYPTOPP_DATA_DIR # define CRYPTOPP_DATA_DIR "" #endif // Define this to disable the test suite from searching for test -// vectors and data in "./" and "$ORIGIN/../share/cryptopp". The -// library will still search in CRYPTOPP_DATA_DIR, regardless. -// Some distros may want to disable this feature. Also see -// https://github.com/weidai11/cryptopp/issues/760 +// vectors and data in "./" and "$ORIGIN/../share/cryptopp". The +// library will still search in CRYPTOPP_DATA_DIR, regardless. +// Some distros may want to disable this feature. Also see +// https://github.com/weidai11/cryptopp/issues/760 // #ifndef CRYPTOPP_DISABLE_DATA_DIR_SEARCH // # define CRYPTOPP_DISABLE_DATA_DIR_SEARCH // #endif // Define this if you want or need the library's memcpy_s and memmove_s. -// See http://github.com/weidai11/cryptopp/issues/28. +// See http://github.com/weidai11/cryptopp/issues/28. // #if !defined(CRYPTOPP_WANT_SECURE_LIB) // # define CRYPTOPP_WANT_SECURE_LIB // #endif // File system code to write to GZIP archive. -// http://www.gzip.org/format.txt +// http://www.gzip.org/format.txt #if !defined(GZIP_OS_CODE) # if defined(__macintosh__) # define GZIP_OS_CODE 7 @@ -173,11 +173,11 @@ #define CRYPTOPP_RIJNDAEL_NAME "AES" // CRYPTOPP_DEBUG enables the library's CRYPTOPP_ASSERT. CRYPTOPP_ASSERT -// raises a SIGTRAP (Unix) or calls DebugBreak() (Windows). CRYPTOPP_ASSERT -// is only in effect when CRYPTOPP_DEBUG, DEBUG or _DEBUG is defined. Unlike -// Posix assert, CRYPTOPP_ASSERT is not affected by NDEBUG (or failure to -// define it). -// Also see http://github.com/weidai11/cryptopp/issues/277, CVE-2016-7420 +// raises a SIGTRAP (Unix) or calls DebugBreak() (Windows). CRYPTOPP_ASSERT +// is only in effect when CRYPTOPP_DEBUG, DEBUG or _DEBUG is defined. Unlike +// Posix assert, CRYPTOPP_ASSERT is not affected by NDEBUG (or failure to +// define it). +// Also see http://github.com/weidai11/cryptopp/issues/277, CVE-2016-7420 #if (defined(DEBUG) || defined(_DEBUG)) && !defined(CRYPTOPP_DEBUG) # define CRYPTOPP_DEBUG 1 #endif @@ -195,7 +195,7 @@ /// \namespace CryptoPP /// \brief Crypto++ library namespace /// \details Nearly all classes are located in the CryptoPP namespace. Within -/// the namespace, there are two additional namespaces. +/// the namespace, there are two additional namespaces. ///