mirror of
https://github.com/DNSCrypt/dnscrypt-proxy.git
synced 2025-04-04 21:57:44 +03:00
Update deps
This commit is contained in:
parent
29c2b76edd
commit
45b915882a
32 changed files with 329 additions and 273 deletions
6
vendor/github.com/jedisct1/go-dnsstamps/dnsstamps.go
generated
vendored
6
vendor/github.com/jedisct1/go-dnsstamps/dnsstamps.go
generated
vendored
|
@ -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
|
||||
|
|
2
vendor/github.com/jedisct1/go-dnsstamps/go.mod
generated
vendored
2
vendor/github.com/jedisct1/go-dnsstamps/go.mod
generated
vendored
|
@ -1,3 +1,3 @@
|
|||
module github.com/jedisct1/go-dnsstamps
|
||||
|
||||
go 1.12
|
||||
go 1.14
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue