Show
Ignore:
Timestamp:
04/03/06 22:29:20 (4 years ago)
Author:
ahu
Message:

ok, I lied - rfc 4255 has chosen In All Its Wisdom to implement SSHFP as base-16 instead of base-64, like all the other crypto records. This is probably to make cutting & pasting from .ssh/known_hosts easier. Added support for hexadecimal records.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/pdns/pdns/dnsparser.cc

    r637 r650  
    391391  d_pos = d_startrecordpos + d_recordlen; 
    392392} 
     393 
     394void PacketReader::xfrHexBlob(string& blob) 
     395{ 
     396  xfrBlob(blob); 
     397}