summaryrefslogtreecommitdiff
path: root/rc2.h
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2019-10-14 12:30:10 -0400
committerJeffrey Walton <noloader@gmail.com>2019-10-14 12:30:10 -0400
commit9013cb60fb1b28537a185fc98486d74e7cf39ea1 (patch)
tree992fd047b43a6142c9d0d107eb5eb60baa3cca27 /rc2.h
parent6f36f0db06d3312ae17b8b89c51ff0e2f10352f1 (diff)
downloadcryptopp-git-9013cb60fb1b28537a185fc98486d74e7cf39ea1.tar.gz
Fix semicolons yet again (GH #889)
So it looks like sed added a '\r' between the closing paren and the semi. Grepping for '^;' failed because the '\r' was considered part of the previous line, so it showed no hits. I finally had to write a C program to properly identify and fix those damn stray semicolons.
Diffstat (limited to 'rc2.h')
-rw-r--r--rc2.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/rc2.h b/rc2.h
index ec0c03fa..50a39ae8 100644
--- a/rc2.h
+++ b/rc2.h
@@ -17,8 +17,8 @@ NAMESPACE_BEGIN(CryptoPP)
/// \since Crypto++ 3.0
struct RC2_Info : public FixedBlockSize<8>, public VariableKeyLength<16, 1, 128>
{
- CRYPTOPP_CONSTANT(DEFAULT_EFFECTIVE_KEYLENGTH = 1024) ;
- CRYPTOPP_CONSTANT(MAX_EFFECTIVE_KEYLENGTH = 1024) ;
+ CRYPTOPP_CONSTANT(DEFAULT_EFFECTIVE_KEYLENGTH = 1024);
+ CRYPTOPP_CONSTANT(MAX_EFFECTIVE_KEYLENGTH = 1024);
CRYPTOPP_STATIC_CONSTEXPR const char* StaticAlgorithmName() {return "RC2";}
};
@@ -88,4 +88,3 @@ typedef RC2::Decryption RC2Decryption;
NAMESPACE_END
#endif
-