aboutsummaryrefslogtreecommitdiffstats
path: root/src/codec
Commit message (Collapse)AuthorAgeFilesLines
* Fix various auto generated dependencies that were wronglloyd2009-07-171-0/+1
|
* Add a script that reads the output of print_deps.py and rewriteslloyd2009-07-156-18/+16
| | | | | | the info.txt files with the right module dependencies. Apply it across the codebase.
* Thomas Moschny passed along a request from the Fedora packagers which camelloyd2009-03-3014-287/+315
| | | | | | | | | | | | | | | up during the Fedora submission review, that each source file include some text about the license. One handy Perl script later and each file now has the line Distributed under the terms of the Botan license after the copyright notices. While I was in there modifying every file anyway, I also stripped out the remainder of the block comments (lots of astericks before and after the text); this is stylistic thing I picked up when I was first learning C++ but in retrospect it is not a good style as the structure makes it harder to modify comments (with the result that comments become fewer, shorter and are less likely to be updated, which are not good things).
* Have Algorithm_Factory::make_hash_function throw an exception if it can'tlloyd2008-11-102-2/+4
| | | | | | find an object to clone. Add a new constructor to Hash_Filter taking a HashFunction*
* Split the last parts of the 'core' modulelloyd2008-11-082-2/+0
| | | | Add some missing info.txts
* Split base.h into block_cipher.h and stream_cipher.hlloyd2008-11-084-0/+6
| | | | | | It turned out many files were including base.h merely to get other includes (like types.h, secmem.h, and exceptn.h). Those have been changed to directly include the files containing the declarations that code needs.
* Doxygen comments for base64 and hex from InSiTolloyd2008-10-132-23/+81
|
* Add BOTAN_DLL macro to public class definitions that were missing it.lloyd2008-10-092-4/+4
|
* Document dependencies between moduleslloyd2008-10-014-0/+16
|
* Fix loading issueslloyd2008-09-291-0/+2
|
* Rename all modinfo.txt files to info.txt, since they are all (none) oflloyd2008-09-296-0/+0
| | | | | them modules now. In any case there is no distinction so info.txt seems better.
* New filters module. Add deps for it in some needed areas (codec, pbes)lloyd2008-09-282-0/+2
|
* Add modinfo for pem, hash_id, selftest moduleslloyd2008-09-281-0/+14
|
* PEM codec modulelloyd2008-09-283-0/+178
|
* Put OpenPGP codec routines into codec/openpgp modulelloyd2008-09-283-0/+234
|
* Move all BigInt stuff into bigint/. Currently all asm modules are disabled;lloyd2008-09-284-0/+93
| | | | | | | | | configure.pl doesn't understand how to handle this yet (replace logic only understands stuff in src, not how one module can replace another modules src, or anything about prioritizing). Move some hex and base64 stuff out of charset.cpp and into their codec directories.
* Move almost all of the ASN.1, BER, and DER codec related code into newlloyd2008-09-2812-0/+1262
module asn1 Move hex and base64 codecs into new codecs directory. Also move zlib and bzip2 to codecs from compress.