aboutsummaryrefslogtreecommitdiffstats
path: root/src/kdf
Commit message (Collapse)AuthorAgeFilesLines
* Remove the 'realname' attribute on all modules and cc/cpu/os info files.lloyd2009-10-297-14/+0
| | | | | Pretty much useless and unused, except for listing the module names in build.h and the short versions totally suffice for that.
* Format, add names to params in headerlloyd2009-10-191-3/+7
|
* Move some files around to break up dependencies between directorieslloyd2009-07-161-0/+4
|
* Add a script that reads the output of print_deps.py and rewriteslloyd2009-07-156-30/+29
| | | | | | the info.txt files with the right module dependencies. Apply it across the codebase.
* Add a script that analyzes the source and prints module dependencies.lloyd2009-07-153-35/+35
| | | | | | | | | Useful for tracking where the big balls of mud are. Fix dependencies in gost_3411 (depends on the gost block cipher), and the TLS PRF (depends on HMAC). Also hide TLS_PRF::P_hash in an anonymous namespace instead of making it a private static function. I don't think this will affect binary compat, since it was statically linked.
* Add variable names to decls in kdf.hlloyd2009-06-191-12/+20
|
* Thomas Moschny passed along a request from the Fedora packagers which camelloyd2009-03-3014-134/+162
| | | | | | | | | | | | | | | 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 BufferedComputation to new buf_comp.{h,cpp}lloyd2008-11-082-0/+3
|
* Move declaration of MessageAuthenticationCode base class to mac.h (from base.h)lloyd2008-11-081-1/+1
|
* Move the declaration of the HashFunction base class to a new header hash.hlloyd2008-11-083-3/+3
| | | | (from base.h)
* TLS_PRF also depends on MD5 and SHA1, was not so markedlloyd2008-10-261-0/+2
|
* In KDF instead of lookup, instantiate fixed hashes (MD5, SHA-1) directlylloyd2008-10-264-21/+24
|
* Move kdf/kdf_base to kdflloyd2008-10-269-6/+6
|
* Move s2k.{h,cpp} and S2K algos from core and kdf to new s2k/ dirlloyd2008-10-269-355/+0
|
* Add trailing H__ to some header guards. Line wrap long comment.lloyd2008-10-131-2/+2
|
* More Doxygen comments from InSiTolloyd2008-10-132-7/+16
|
* Split kdf.h and kdf.cpp from core/ to kdf/kdf_baselloyd2008-10-089-1/+148
| | | | Update dependencies as needed.
* Append _prf to sslv3, tlsv1, x932 module nameslloyd2008-10-089-0/+0
|
* Move oids.h to oid_lookup. Allows for much smaller build by disabling asn1lloyd2008-10-011-0/+5
|
* Remove warnings in KDF1, KDF2 copy constructorslloyd2008-09-302-2/+2
|
* Fix warning in PBKDF1 copy constructorlloyd2008-09-301-1/+3
|
* Remove lookup.h from X9.31 PRNG, X9.19 MAC, SSLv3 MAC, PBKDF1lloyd2008-09-302-13/+14
|
* Remove lookup from Randpool, HMAC, CMAC, CBC-MAC, TLS-PRF, and PBKDF2lloyd2008-09-304-36/+63
|
* Remove lookup/libstate dependency on Lion, KDF1, KDF2, EMSA[1-4]lloyd2008-09-304-31/+14
|
* Rewrite part of the module loading code in configure.pl, now dependencieslloyd2008-09-301-1/+1
| | | | | | seem to be handled correctly (er, at least mostly), and more importantly the asm MPI modules are detected and used correctly (at least on x86-64 and x86).
* Move KDF, EME, and EMSA base classes from pubkey to core to remove alloyd2008-09-297-6/+8
| | | | false dependency on BigInt in the KDF/padding code.
* Rename all modinfo.txt files to info.txt, since they are all (none) oflloyd2008-09-299-0/+0
| | | | | them modules now. In any case there is no distinction so info.txt seems better.
* Add deps, missing includes, etclloyd2008-09-291-1/+1
|
* Modularize IF family PK algorithms (integer factorization; RSA and RW baselloyd2008-09-281-0/+10
| | | | | | class). Add many missing modinfo.txts that I had not checked in. Oops.
* Modularize MGF1. Make EME1 and EMSA4 depend on itlloyd2008-09-282-0/+88
|
* Move all modules into src/ directorylloyd2008-09-2824-0/+840