Update deps

This commit is contained in:
Frank Denis 2020-07-07 14:12:02 +02:00
parent 29c2b76edd
commit 45b915882a
32 changed files with 329 additions and 273 deletions

View file

@ -75,12 +75,10 @@ func NewDNSCryptServerStampFromLegacy(serverAddrStr string, serverPkStr string,
func NewServerStampFromString(stampStr string) (ServerStamp, error) {
if !strings.HasPrefix(stampStr, "sdns:") {
return ServerStamp{}, errors.New("Stamps are expected to start with sdns:")
return ServerStamp{}, errors.New("Stamps are expected to start with \"sdns:\"")
}
stampStr = stampStr[5:]
if strings.HasPrefix(stampStr, "//") {
stampStr = stampStr[2:]
}
stampStr = strings.TrimPrefix(stampStr, "//")
bin, err := base64.RawURLEncoding.Strict().DecodeString(stampStr)
if err != nil {
return ServerStamp{}, err

View file

@ -1,3 +1,3 @@
module github.com/jedisct1/go-dnsstamps
go 1.12
go 1.14