Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Internal header cleanups | Jack Lloyd | 2015-09-19 | 1 | -1/+0 |
| | | | | Only user-visible change is the removal of get_byte.h | ||||
* | Fix static lib registration for block, hash, mac, stream, kdf | Jack Lloyd | 2015-09-10 | 1 | -2/+0 |
| | | | | | | | | | | | The support problems from having static libraries not work in the obvious way will be endless trouble. Instead have each set of registrations tag along in a source file for the basic type, at the cost of some extra ifdefs. On shared libs this is harmless - everything is going into the shared object anyway. With static libs, this means pulling in a single block cipher pulls in the text of all the them. But that's still strictly better than the amalgamation (which is really pulling in everything), and it works (unlike status quo). | ||||
* | In Algo_Registry if a maker func fails, try the next most preferred one | lloyd | 2015-03-05 | 1 | -1/+1 |
| | | | | | | | | instead of bailing out immediately. Rename the 'builtin' provider to 'base' since really they are all built in. Fix MARK-4 when OpenSSL was enabled - it did not respect the skip param. | ||||
* | Use registry for streams and MACs. Start updating callers. | lloyd | 2015-01-31 | 1 | -3/+3 |
| | |||||
* | Add SipHash | lloyd | 2015-01-11 | 1 | -0/+123 |