aboutsummaryrefslogtreecommitdiffstats
path: root/src/cms/cms_comp.cpp
diff options
context:
space:
mode:
authorlloyd <[email protected]>2008-09-28 20:58:26 +0000
committerlloyd <[email protected]>2008-09-28 20:58:26 +0000
commit3948d38e2bef3f42169f96a17cc5daa6e03fb575 (patch)
tree1fe40baedc9e49a5d734b100790f79ac70839513 /src/cms/cms_comp.cpp
parentf5ebea8d593d2f6d5b536ddb978f44d80d4e873f (diff)
Move CMS code into main src tree, though it currently doesn't compile (needs further updating)
Diffstat (limited to 'src/cms/cms_comp.cpp')
-rw-r--r--src/cms/cms_comp.cpp102
1 files changed, 102 insertions, 0 deletions
diff --git a/src/cms/cms_comp.cpp b/src/cms/cms_comp.cpp
new file mode 100644
index 000000000..0d75dae76
--- /dev/null
+++ b/src/cms/cms_comp.cpp
@@ -0,0 +1,102 @@
+/*************************************************
+* CMS Compression Source File *
+* (C) 1999-2007 Jack Lloyd *
+*************************************************/
+
+#include <botan/cms_enc.h>
+#include <botan/cms_dec.h>
+#include <botan/der_enc.h>
+#include <botan/ber_dec.h>
+#include <botan/oids.h>
+#include <botan/pipe.h>
+
+#if defined(BOTAN_EXT_COMPRESSOR_ZLIB)
+ #include <botan/zlib.h>
+ #define HAVE_ZLIB 1
+#else
+ #define HAVE_ZLIB 0
+#endif
+
+namespace Botan {
+
+/*************************************************
+* Compress a message *
+*************************************************/
+void CMS_Encoder::compress(const std::string& algo)
+ {
+ if(!CMS_Encoder::can_compress_with(algo))
+ throw Invalid_Argument("CMS_Encoder: Cannot compress with " + algo);
+
+ Filter* compressor = 0;
+
+#if HAVE_ZLIB
+ if(algo == "Zlib") compressor = new Zlib_Compression;
+#endif
+
+ if(compressor == 0)
+ throw Internal_Error("CMS: Couldn't get ahold of a compressor");
+
+ Pipe pipe(compressor);
+ pipe.process_msg(data);
+ SecureVector<byte> compressed = pipe.read_all();
+
+ DER_Encoder encoder;
+ encoder.start_cons(SEQUENCE).
+ encode((u32bit)0).
+ encode(AlgorithmIdentifier("Compression." + algo,
+ MemoryVector<byte>())).
+ raw_bytes(make_econtent(compressed, type)).
+ end_cons();
+
+ add_layer("CMS.CompressedData", encoder);
+ }
+
+/*************************************************
+* See if the named compression algo is available *
+*************************************************/
+bool CMS_Encoder::can_compress_with(const std::string& algo)
+ {
+ if(HAVE_ZLIB && algo == "Zlib")
+ return true;
+ return false;
+ }
+
+/*************************************************
+* Decompress a message *
+*************************************************/
+void CMS_Decoder::decompress(BER_Decoder& decoder)
+ {
+ u32bit version;
+ AlgorithmIdentifier comp_algo;
+
+ BER_Decoder comp_info = decoder.start_cons(SEQUENCE);
+
+ comp_info.decode(version);
+ if(version != 0)
+ throw Decoding_Error("CMS: Unknown version for CompressedData");
+
+ comp_info.decode(comp_algo);
+ read_econtent(comp_info);
+ comp_info.end_cons();
+
+ Filter* decompressor = 0;
+
+ info = comp_algo.oid.as_string();
+
+#if HAVE_ZLIB
+ if(comp_algo.oid == OIDS::lookup("Compression.Zlib"))
+ {
+ decompressor = new Zlib_Decompression;
+ info = "Zlib";
+ }
+#endif
+
+ if(!decompressor)
+ status = FAILURE;
+
+ Pipe pipe(decompressor);
+ pipe.process_msg(data);
+ data = pipe.read_all();
+ }
+
+}