mirror of
https://github.com/DNSCrypt/dnscrypt-proxy.git
synced 2025-04-04 05:37:38 +03:00
miekg/dns update
This commit is contained in:
parent
4caa7b6d64
commit
f033bb3034
40 changed files with 453 additions and 146 deletions
6
vendor/github.com/miekg/dns/scan_rr.go
generated
vendored
6
vendor/github.com/miekg/dns/scan_rr.go
generated
vendored
|
@ -734,7 +734,11 @@ func (rr *HIP) parse(c *zlexer, o string) *ParseError {
|
|||
return &ParseError{"", "bad HIP PublicKey", l}
|
||||
}
|
||||
rr.PublicKey = l.token // This cannot contain spaces
|
||||
rr.PublicKeyLength = uint16(base64.StdEncoding.DecodedLen(len(rr.PublicKey)))
|
||||
decodedPK, decodedPKerr := base64.StdEncoding.DecodeString(rr.PublicKey)
|
||||
if decodedPKerr != nil {
|
||||
return &ParseError{"", "bad HIP PublicKey", l}
|
||||
}
|
||||
rr.PublicKeyLength = uint16(len(decodedPK))
|
||||
|
||||
// RendezvousServers (if any)
|
||||
l, _ = c.Next()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue