summaryrefslogtreecommitdiff
path: root/zlib.cpp
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2015-11-05 01:59:46 -0500
committerJeffrey Walton <noloader@gmail.com>2015-11-05 01:59:46 -0500
commit48809d4e85c125814425c621d8d0d89f95405924 (patch)
tree1010fd16c4b1199f3d27dd726dda241a2bd29f83 /zlib.cpp
parent025337a94aceb75d188149db70c2094673772816 (diff)
downloadcryptopp-git-48809d4e85c125814425c621d8d0d89f95405924.tar.gz
CRYPTOPP 5.6.3 RC6 checkin
Diffstat (limited to 'zlib.cpp')
-rw-r--r--zlib.cpp184
1 files changed, 93 insertions, 91 deletions
diff --git a/zlib.cpp b/zlib.cpp
index 92e03819..fd310858 100644
--- a/zlib.cpp
+++ b/zlib.cpp
@@ -1,91 +1,93 @@
-// zlib.cpp - written and placed in the public domain by Wei Dai
-
-// "zlib" is the name of a well known C language compression library
-// (http://www.zlib.org) and also the name of a compression format
-// (RFC 1950) that the library implements. This file is part of a
-// complete reimplementation of the zlib compression format.
-
-#include "pch.h"
-#include "zlib.h"
-#include "zdeflate.h"
-#include "zinflate.h"
-
-NAMESPACE_BEGIN(CryptoPP)
-
-static const byte DEFLATE_METHOD = 8;
-static const byte FDICT_FLAG = 1 << 5;
-
-// *************************************************************
-
-void ZlibCompressor::WritePrestreamHeader()
-{
- m_adler32.Restart();
- byte cmf = DEFLATE_METHOD | ((GetLog2WindowSize()-8) << 4);
- byte flags = GetCompressionLevel() << 6;
- AttachedTransformation()->PutWord16(
- static_cast<word16>(RoundUpToMultipleOf(cmf*256U+flags, 31U)));
-}
-
-void ZlibCompressor::ProcessUncompressedData(const byte *inString, size_t length)
-{
- m_adler32.Update(inString, length);
-}
-
-void ZlibCompressor::WritePoststreamTail()
-{
- FixedSizeSecBlock<byte, 4> adler32;
- m_adler32.Final(adler32);
- AttachedTransformation()->Put(adler32, 4);
-}
-
-unsigned int ZlibCompressor::GetCompressionLevel() const
-{
- static const unsigned int deflateToCompressionLevel[] = {0, 1, 1, 1, 2, 2, 2, 2, 2, 3};
- return deflateToCompressionLevel[GetDeflateLevel()];
-}
-
-// *************************************************************
-
-ZlibDecompressor::ZlibDecompressor(BufferedTransformation *attachment, bool repeat, int propagation)
- : Inflator(attachment, repeat, propagation)
-{
-}
-
-void ZlibDecompressor::ProcessPrestreamHeader()
-{
- m_adler32.Restart();
-
- byte cmf;
- byte flags;
-
- if (!m_inQueue.Get(cmf) || !m_inQueue.Get(flags))
- throw HeaderErr();
-
- if ((cmf*256+flags) % 31 != 0)
- throw HeaderErr(); // if you hit this exception, you're probably trying to decompress invalid data
-
- if ((cmf & 0xf) != DEFLATE_METHOD)
- throw UnsupportedAlgorithm();
-
- if (flags & FDICT_FLAG)
- throw UnsupportedPresetDictionary();
-
- m_log2WindowSize = 8 + (cmf >> 4);
-}
-
-void ZlibDecompressor::ProcessDecompressedData(const byte *inString, size_t length)
-{
- AttachedTransformation()->Put(inString, length);
- m_adler32.Update(inString, length);
-}
-
-void ZlibDecompressor::ProcessPoststreamTail()
-{
- FixedSizeSecBlock<byte, 4> adler32;
- if (m_inQueue.Get(adler32, 4) != 4)
- throw Adler32Err();
- if (!m_adler32.Verify(adler32))
- throw Adler32Err();
-}
-
-NAMESPACE_END
+// zlib.cpp - written and placed in the public domain by Wei Dai
+
+// "zlib" is the name of a well known C language compression library
+// (http://www.zlib.org) and also the name of a compression format
+// (RFC 1950) that the library implements. This file is part of a
+// complete reimplementation of the zlib compression format.
+
+#include "pch.h"
+#include "zlib.h"
+#include "zdeflate.h"
+#include "zinflate.h"
+#include "secblock.h"
+
+NAMESPACE_BEGIN(CryptoPP)
+
+static const byte DEFLATE_METHOD = 8;
+static const byte FDICT_FLAG = (1 << 5);
+
+// *************************************************************
+
+void ZlibCompressor::WritePrestreamHeader()
+{
+ m_adler32.Restart();
+ assert(((GetLog2WindowSize()-8) << 4) <= 255);
+ byte cmf = byte(DEFLATE_METHOD | ((GetLog2WindowSize()-8) << 4));
+ assert((GetCompressionLevel() << 6) <= 255);
+ byte flags = byte(GetCompressionLevel() << 6);
+ AttachedTransformation()->PutWord16(RoundUpToMultipleOf(word16(cmf*256+flags), word16(31)));
+}
+
+void ZlibCompressor::ProcessUncompressedData(const byte *inString, size_t length)
+{
+ m_adler32.Update(inString, length);
+}
+
+void ZlibCompressor::WritePoststreamTail()
+{
+ FixedSizeSecBlock<byte, 4> adler32;
+ m_adler32.Final(adler32);
+ AttachedTransformation()->Put(adler32, 4);
+}
+
+unsigned int ZlibCompressor::GetCompressionLevel() const
+{
+ static const unsigned int deflateToCompressionLevel[] = {0, 1, 1, 1, 2, 2, 2, 2, 2, 3};
+ return deflateToCompressionLevel[GetDeflateLevel()];
+}
+
+// *************************************************************
+
+ZlibDecompressor::ZlibDecompressor(BufferedTransformation *attachment, bool repeat, int propagation)
+ : Inflator(attachment, repeat, propagation)
+{
+}
+
+void ZlibDecompressor::ProcessPrestreamHeader()
+{
+ m_adler32.Restart();
+
+ byte cmf;
+ byte flags;
+
+ if (!m_inQueue.Get(cmf) || !m_inQueue.Get(flags))
+ throw HeaderErr();
+
+ if ((cmf*256+flags) % 31 != 0)
+ throw HeaderErr(); // if you hit this exception, you're probably trying to decompress invalid data
+
+ if ((cmf & 0xf) != DEFLATE_METHOD)
+ throw UnsupportedAlgorithm();
+
+ if (flags & FDICT_FLAG)
+ throw UnsupportedPresetDictionary();
+
+ m_log2WindowSize = 8 + (cmf >> 4);
+}
+
+void ZlibDecompressor::ProcessDecompressedData(const byte *inString, size_t length)
+{
+ AttachedTransformation()->Put(inString, length);
+ m_adler32.Update(inString, length);
+}
+
+void ZlibDecompressor::ProcessPoststreamTail()
+{
+ FixedSizeSecBlock<byte, 4> adler32;
+ if (m_inQueue.Get(adler32, 4) != 4)
+ throw Adler32Err();
+ if (!m_adler32.Verify(adler32))
+ throw Adler32Err();
+}
+
+NAMESPACE_END