aboutsummaryrefslogtreecommitdiffstats
path: root/src/modes/cbc
Commit message (Collapse)AuthorAgeFilesLines
* Shuffle things around. Add NIST X.509 test to build.lloyd2014-01-013-436/+0
|
* Set default offset for all cipher mode update/final signatures.lloyd2013-12-311-6/+6
|
* s/default_nonce_size/default_nonce_length/lloyd2013-12-102-2/+2
|
* Give everything setting a feature test macro in build.h a version codelloyd2013-11-281-1/+1
| | | | | | so application code can check for the specific API it expects without having to keep track of what versions APIs x,y,z changed. Arbitrarily set all current API versions to 20131128.
* Fix padding error in CBC encryption if offset != 0lloyd2013-10-121-3/+2
|
* Add Cipher_Mode intermediate class. Add missing BOTAN_DLL exportslloyd2013-08-191-2/+2
|
* Simplify handling of CBC/ECB padding and move source to src/modeslloyd2013-08-151-18/+2
|
* Convert CTS mode to Transformation APIlloyd2013-08-152-7/+160
|
* Keeping this buffer persistently greatly helps performancelloyd2013-08-152-8/+8
|
* Move ECB to Transformation APIlloyd2013-08-153-2/+6
|
* Move CBC to Transformation APIlloyd2013-08-153-0/+296
|
* Move most code that relies heavily on Filters into src/filters.lloyd2009-11-173-225/+0
| | | | | | Remove support for (unused) modset settings. Move tss, fpe, cryptobox, and aont to new dir constructs
* Rename/remove some secmem member variables for better matching with STLlloyd2009-11-171-2/+2
| | | | | | | | containers (specifically vector). Rename is_empty to empty Remove has_items Rename create to resize
* Remove the 'realname' attribute on all modules and cc/cpu/os info files.lloyd2009-10-291-2/+0
| | | | | Pretty much useless and unused, except for listing the module names in build.h and the short versions totally suffice for that.
* Correct some errors in the automatically generated dependencies.lloyd2009-07-161-1/+0
|
* Add a script that reads the output of print_deps.py and rewriteslloyd2009-07-151-2/+1
| | | | | | 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-302-44/+48
| | | | | | | | | | | | | | | 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).
* Make cipher mode padder non-const in ECB and CBClloyd2008-11-102-8/+8
|
* Remove support for block cipher padding methods in engine. Like S2K,lloyd2008-11-101-0/+4
| | | | | | | | | | they were not used at all outside of the core library implementations. One change is that now get_bc_pad returns a new object, instead of a pointer to a const shared padding method. This does imply a bit more dynamic memory overhead, but the modes are pretty light (stateless, for the most part), so this doesn't seem like a big deal. So modify ECB and CBC classes to add destructors to delete the padding object.
* Add dep in ecb and cbc on mode_padlloyd2008-11-101-0/+1
|
* Update modes requires since modebase is now modeslloyd2008-11-091-1/+1
|
* Remove lookup.h use from ECB, CBC, CFBlloyd2008-11-082-25/+20
|
* Remove lookup.h from modebaselloyd2008-11-081-4/+8
|
* Rename all modinfo.txt files to info.txt, since they are all (none) oflloyd2008-09-291-0/+0
| | | | | them modules now. In any case there is no distinction so info.txt seems better.
* Add modebase module (and add dep in cipher mode impls). Move data_snk.cpp to ↵lloyd2008-09-281-0/+5
| | | | filters
* Move all modules into src/ directorylloyd2008-09-283-0/+216