aboutsummaryrefslogtreecommitdiffstats
path: root/src/engine/openssl/ossl_md.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Add missing BOTAN_DLL exports.lloyd2009-12-161-1/+1
| | | | Move most of the engine headers to internal
* Remove all exception specifications. The way these are designed in C++ islloyd2009-10-221-2/+2
| | | | | | just too fragile and not that useful. Something like Java's checked exceptions might be nice, but simply killing the process entirely if an unexpected exception is thrown is not exactly useful for something trying to be robust.
* Update OpenSSL engine with encrypt_n interface for block ciphers.lloyd2009-09-171-5/+19
| | | | | | Add support for SHA-2 and SEED. Wrap block cipher usage in checks for OPENSSL_NO_XXX
* Thomas Moschny mentioned that OpenSSL 1.0 betas disable MD2 by default.lloyd2009-08-271-0/+10
| | | | Wrap the EVP_ calls in OPENSSL_NO_XXX checks to handle this.
* Thomas Moschny passed along a request from the Fedora packagers which camelloyd2009-03-301-28/+30
| | | | | | | | | | | | | | | 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).
* Move most of the remaining libstate code to pk_engine.cpp, move engineslloyd2008-11-111-0/+114
| | | | | back to the toplevel since most othe dependencies have been removed now (except get_cipher which still needs changes)
* Move engine to libstate/ directory, since there is a mutual dependencylloyd2008-11-091-121/+0
| | | | | | (messy). Remove unused libstate.h includes from a few files.
* Move all modules into src/ directorylloyd2008-09-281-0/+121