summaryrefslogtreecommitdiffstats
path: root/src/lib/dns/rdata (follow)
Commit message (Collapse)AuthorAgeFilesLines
* [2762] Update tests and implementation (see full log)Mukund Sivaraman2013-09-091-6/+16
| | | | | | | * Fix the unittest so that it compares the correct object (tsig6) * Store canonical long-form HMAC name in case of HMAC-MD5 + Update TSIG RDATA class (test already present) + Update TSIGKey class (new tests added)
* [2726] Use empty() instead of size()Michal 'vorner' Vaner2013-06-171-4/+4
| | | | To check if there's something inside.
* [2726] Use more common check for assignment to selfMichal 'vorner' Vaner2013-06-1412-12/+12
| | | | This way cppcheck should recognize it as such.
* [2726] Use initializer listMichal 'vorner' Vaner2013-06-141-6/+6
| | | | Instead of assignment in the copy constructor.
* [2522] minor style matter: brace positionJINMEI Tatuya2013-05-241-2/+1
|
* [2522] TSIG documentation, TSIG unit test string constructorsPaul Selkirk2013-05-221-18/+26
|
* [2522] support multiline or space-separated fingerprint text in SSHFPPaul Selkirk2013-05-211-5/+20
|
* [2522] add SSHFP::operator=Paul Selkirk2013-05-212-1/+16
|
* [2522] style fix: adjusted brace positionsJINMEI Tatuya2013-05-182-2/+4
|
* [2522] rewrite TSIG string constructor documentationPaul Selkirk2013-05-181-35/+27
|
* [2522] MINFO & RP review updatesPaul Selkirk2013-05-184-27/+9
|
* [2522] TSIG review updatesPaul Selkirk2013-05-173-21/+24
|
* [2522] more and better SSHFP unit testsPaul Selkirk2013-05-171-3/+0
|
* [2522] convert SSHFP to use Impl structPaul Selkirk2013-05-172-48/+91
|
* [2522] add MasterLexer constructors for in::SSHFP, ch::A, hs::A.Paul Selkirk2013-05-164-34/+96
| | | | Also removed OldRdataFactory/new_rdata_factory_users stuff, since all Rdata classes now use the new RdataFactory.
* [2522] trivial style fixJINMEI Tatuya2013-05-161-1/+2
|
* [2522] minor style fixesJINMEI Tatuya2013-05-162-3/+4
|
* [2522] trivial style cleanup: folded long linesJINMEI Tatuya2013-05-161-5/+10
|
* [2522] fix a typoPaul Selkirk2013-05-161-1/+1
|
* [2522] initialize impl_ directly in TSIG lexer constructorPaul Selkirk2013-05-161-3/+2
|
* [2522] TSIG algorigthm can be a reference, maybe a bit more efficientPaul Selkirk2013-05-161-1/+1
|
* [2522] convert TSIG string constructor tests to checkFromTextPaul Selkirk2013-05-161-3/+3
|
* [2522] more TSIG unit testsPaul Selkirk2013-05-161-1/+1
|
* [2522] add MasterLexer constructor for TSIGPaul Selkirk2013-05-162-53/+132
|
* [2522] add MasterLexer constructor for MINFOPaul Selkirk2013-05-162-28/+59
|
* [2522] normalize some RP documentation commentsPaul Selkirk2013-05-162-9/+23
|
* [2522] add MasterLexer constructor for RPPaul Selkirk2013-05-162-22/+54
|
* Merge branch 'trac2521'Paul Selkirk2013-05-085-65/+203
|\ | | | | | | | | Conflicts: src/lib/dns/gen-rdatacode.py.in
| * [2521] add 0-length check to DHCID from-wire constructorPaul Selkirk2013-05-081-7/+4
| |
| * [2521] better way of handling empty DHCID RDATAPaul Selkirk2013-05-061-8/+4
| |
| * [2521] RRSIG signer can be a reference, maybe a bit more efficientPaul Selkirk2013-05-061-1/+1
| |
| * [2521] DHCDID RDATA cannot be emptyPaul Selkirk2013-05-061-4/+7
| |
| * [2521] minor simplification: initialize mem var in the list when possible.JINMEI Tatuya2013-05-041-2/+1
| | | | | | | | not a big deal in this case, but it's more concise.
| * [2521] a minor style nit: adjusted a '*' position per style guideline.JINMEI Tatuya2013-05-041-1/+1
| |
| * [2521] further DHCID review updatesPaul Selkirk2013-05-022-35/+24
| | | | | | | | | | | | | | - fixed multi-line digest aggregator - remove min-length check, and allow empty string - removed unit tests for short strings - added unit tests for empty string and unterminated multi-line base64
| * [2521] further RRSIG review updatesPaul Selkirk2013-05-022-19/+32
| | | | | | | | | | | | | | - fixed multi-line signature aggregator - allow empty signature - fixed some unit tests - added unit test for unterminated multi-line base64
| * [2521] more DHCID unit testsPaul Selkirk2013-04-261-5/+6
| |
| * [2521] RFC4034 only allows unsigned int in the RRSIG Original TTL fieldPaul Selkirk2013-04-262-9/+6
| |
| * [2521] Handle space-separated base-64 digest in DHCID, per Jinmei's review.Paul Selkirk2013-04-261-9/+15
| | | | | | | | Also added more DHCID base-64 unittest cases.
| * [2521] Rearrange RRSIG parser error handling, per Jinmei's review.Paul Selkirk2013-04-262-24/+36
| | | | | | | | | | Also handle space-separated base-64 in RRSIG signature field. Also add more RRSIG unittest cases.
| * [2521] doc cleanup for OPT, per Jinmei's reviewPaul Selkirk2013-04-261-1/+5
| |
| * [2521] constifyJINMEI Tatuya2013-04-231-1/+2
| |
| * [2521] style cleanups: folded a long line; constify variablesJINMEI Tatuya2013-04-231-17/+21
| |
| * [2521] add MasterLexer constructor for DHCIDPaul Selkirk2013-04-102-18/+50
| |
| * [2521] enabled previously disabled rrsig testPaul Selkirk2013-04-102-9/+10
| | | | | | | | also changed createFromLexer from static function to private method
| * [2521] add MasterLexer constructor for RRSIGPaul Selkirk2013-04-081-18/+88
| |
| * [2521] add minimal doxygen comments for string & lexer constructorsPaul Selkirk2013-04-061-1/+7
| |
| * [2521] add MasterLexer constructor for OPTPaul Selkirk2013-04-061-0/+7
| |
* | Merge branch 'trac2387'Mukund Sivaraman2013-04-1013-192/+381
|\ \ | |/ |/|
| * [2387] Revert "Add some assertions anyway"Mukund Sivaraman2013-04-102-2/+0
| | | | | | | | This reverts commit 65f68f7b9235307f8af029b37ebc7c2a309ed7e9.