summaryrefslogtreecommitdiffstats
path: root/src/lib/dns/nsec3hash.h (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'trac1894'Mukund Sivaraman2014-02-141-2/+17
|\ | | | | | | | | Conflicts: src/lib/datasrc/database.cc
| * [1894] Add LabelSequence version of NSEC3Hash::calculate()Mukund Sivaraman2014-01-161-2/+17
| |
* | [trac2945] miscellaneous doxygen warnings worked onJeremy C. Reed2013-05-091-2/+2
|/ | | | | | Still have lots to do. Some of these marked with TODO indicating needing further work (but better than it was before).
* [2357] Update scaffolding using fix-scaffolding.py toolMukund Sivaraman2012-10-251-3/+3
| | | | See bug #2367 for the fix-scaffolding.py tool.
* [2218] Update NSEC3Hash::create() to accept uint8_t buffer instead of vectorMukund Sivaraman2012-09-261-7/+19
|
* [2218] Add a NSEC3Hash::create() variant to take hash params as argsMukund Sivaraman2012-09-241-9/+18
|
* [2218] Move NSEC3 hash calculation to NSEC3Hash classMukund Sivaraman2012-09-211-1/+10
|
* [1576] made DefaultNSEC3HashCreator so an experimental app can use it ↵JINMEI Tatuya2012-02-131-3/+21
| | | | internally.
* [1576] introduced a framework to replace the default NSEC3Hash for further ↵JINMEI Tatuya2012-02-071-0/+72
| | | | tests.
* [1574b] added another version of NSEC3Hash::match, which takes NSEC3PARAMJINMEI Tatuya2012-01-311-0/+6
|
* [1574b] added another factory method, which creates NSEC3HASH from NSEC3 RDATA.JINMEI Tatuya2012-01-311-0/+6
|
* [1574b] added match() method to NSEC3Hash to check parameter consistencyJINMEI Tatuya2012-01-311-0/+17
|
* [1575] documentation update to reflect the introdction of base NSEC3Hash class.JINMEI Tatuya2012-01-271-25/+37
| | | | (there doesn't seem to be need for updating the python doc)
* [1575] introduced an abstract base class of NSEC3Hash with a factory methodJINMEI Tatuya2012-01-271-10/+8
| | | | | as suggested in review. hid the concrete derived class in the implementation. adjusted tests accordingly.
* [1575] wording fixes for the description of NSEC3Hash.calculate()JINMEI Tatuya2012-01-271-3/+3
|
* [1575] added '\brief' to doxygen items for clarityJINMEI Tatuya2012-01-271-6/+6
|
* [1575] editorial cleanupJINMEI Tatuya2012-01-261-2/+2
|
* [1575] Introduced a new NSEC3Hash class based on a Nsec3Param in datasrc,JINMEI Tatuya2012-01-261-0/+124
fixing bugs like case-sensitivity or corner cases for empty salts. provided more detailed tests and documentation.