]> git.ipfire.org Git - thirdparty/dnspython.git/commitdiff
NSEC3PARAM should allow only 4 parts of data 76/head
authorMartin Basti <mbasti@redhat.com>
Wed, 16 Jul 2014 12:15:29 +0000 (14:15 +0200)
committerMartin Basti <mbasti@redhat.com>
Wed, 16 Jul 2014 12:15:29 +0000 (14:15 +0200)
dns/rdtypes/ANY/NSEC3PARAM.py

index 4e687825ad70ab8c45257842b43ee8240728259c..f514991ac66393be31247802e9f8199888fc269c 100644 (file)
@@ -56,6 +56,7 @@ class NSEC3PARAM(dns.rdata.Rdata):
             salt = ''
         else:
             salt = salt.decode('hex-codec')
+        tok.get_eol()
         return cls(rdclass, rdtype, algorithm, flags, iterations, salt)
 
     from_text = classmethod(from_text)