Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Unfortunately it looks like VC 2008 has major issues with how | lloyd | 2010-11-05 | 1 | -8/+3 |
| | | | | | | | | Algorithm::clone is redefinied with covariant return types in the subclasses. Curiously, it only had problems with hash functions and MACs, not ciphers. So remove Algorithm::clone(), leaving the subclass implementations. | ||||
* | Mass disable copy constructors and assignment on all algos until proven ↵ | lloyd | 2010-11-04 | 1 | -0/+4 |
| | | | | safe/useful | ||||
* | Needs virtual destructor | lloyd | 2010-11-03 | 1 | -0/+2 |
| | |||||
* | Doxygen | lloyd | 2010-11-02 | 1 | -0/+26 |
| | |||||
* | Add missing file | lloyd | 2010-11-01 | 1 | -0/+43 |
| | |||||
* | Add new top-level algorithm which provides basic functionality: name | lloyd | 2010-11-01 | 6 | -0/+595 |
query, clearing, and cloning. Applies to ciphers, hashes, MACs, and PBKDFs. May extend to KDFs later as well. A single combined hierarchy in particular will make the algo_factory much simpler. |