From: Martin Basti Date: Wed, 16 Jul 2014 12:15:29 +0000 (+0200) Subject: NSEC3PARAM should allow only 4 parts of data X-Git-Tag: v1.12.0~3^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F76%2Fhead;p=thirdparty%2Fdnspython.git NSEC3PARAM should allow only 4 parts of data --- diff --git a/dns/rdtypes/ANY/NSEC3PARAM.py b/dns/rdtypes/ANY/NSEC3PARAM.py index 4e687825..f514991a 100644 --- a/dns/rdtypes/ANY/NSEC3PARAM.py +++ b/dns/rdtypes/ANY/NSEC3PARAM.py @@ -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)