summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorweidai <weidai@57ff6487-cd31-0410-9ec3-f628ee90f5f0>2007-08-13 23:54:25 +0000
committerweidai <weidai@57ff6487-cd31-0410-9ec3-f628ee90f5f0>2007-08-13 23:54:25 +0000
commit31f8aa2671a0fce7255114fd03dab238dbcce12f (patch)
treebda18adad37cc2a9048f184e527bc865739abb28
parentebb56f57edd46175798c2a70b6dd88bd6ce7f877 (diff)
downloadcryptopp-31f8aa2671a0fce7255114fd03dab238dbcce12f.tar.gz
update version number to 5.5.2
git-svn-id: svn://svn.code.sf.net/p/cryptopp/code/trunk/c5@386 57ff6487-cd31-0410-9ec3-f628ee90f5f0
-rw-r--r--cryptlib.h4
-rw-r--r--cryptopp.rc8
-rw-r--r--test.cpp2
3 files changed, 7 insertions, 7 deletions
diff --git a/cryptlib.h b/cryptlib.h
index 993936e..be42cd2 100644
--- a/cryptlib.h
+++ b/cryptlib.h
@@ -4,14 +4,14 @@
classes that provide a uniform interface to this library.
*/
-/*! \mainpage <a href="http://www.cryptopp.com">Crypto++</a><sup><small>&reg;</small></sup> Library 5.5 Reference Manual
+/*! \mainpage <a href="http://www.cryptopp.com">Crypto++</a><sup><small>&reg;</small></sup> Library 5.5.2 Reference Manual
<dl>
<dt>Abstract Base Classes<dd>
cryptlib.h
<dt>Symmetric Ciphers<dd>
SymmetricCipherDocumentation
<dt>Hash Functions<dd>
- MD2, MD4, MD5, RIPEMD160, RIPEMD320, RIPEMD128, RIPEMD256, SHA1, SHA224, SHA256, SHA384, SHA512, Tiger, Whirlpool
+ SHA1, SHA224, SHA256, SHA384, SHA512, Tiger, Whirlpool, RIPEMD160, RIPEMD320, RIPEMD128, RIPEMD256, Weak1::MD2, Weak1::MD4, Weak1::MD5
<dt>Non-Cryptographic Checksums<dd>
CRC32, Adler32
<dt>Message Authentication Codes<dd>
diff --git a/cryptopp.rc b/cryptopp.rc
index 48313b1..d4f43e5 100644
--- a/cryptopp.rc
+++ b/cryptopp.rc
@@ -27,8 +27,8 @@ LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US
//
VS_VERSION_INFO VERSIONINFO
- FILEVERSION 5,5,0,0
- PRODUCTVERSION 5,5,0,0
+ FILEVERSION 5,5,2,0
+ PRODUCTVERSION 5,5,2,0
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
@@ -46,13 +46,13 @@ BEGIN
VALUE "Comments", "free crypto library, more information available at www.cryptopp.com"
VALUE "CompanyName", "Wei Dai"
VALUE "FileDescription", "Crypto++® Library DLL"
- VALUE "FileVersion", "5, 5, 0, 0"
+ VALUE "FileVersion", "5, 5, 2, 0"
VALUE "InternalName", "cryptopp"
VALUE "LegalCopyright", "Copyright © 1995-2007 by Wei Dai"
VALUE "LegalTrademarks", "Crypto++®"
VALUE "OriginalFilename", "cryptopp.dll"
VALUE "ProductName", "Crypto++® Library"
- VALUE "ProductVersion", "5, 5, 0, 0"
+ VALUE "ProductVersion", "5, 5, 2, 0"
END
END
BLOCK "VarFileInfo"
diff --git a/test.cpp b/test.cpp
index 1845348..d98a2db 100644
--- a/test.cpp
+++ b/test.cpp
@@ -331,7 +331,7 @@ int CRYPTOPP_API main(int argc, char *argv[])
}
else if (command == "V")
{
- cout << "5.5" << endl;
+ cout << CRYPTOPP_VERSION / 100 << '.' << (CRYPTOPP_VERSION % 100) / 10 << '.' << CRYPTOPP_VERSION % 10 << endl;
}
else
{