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
796a7f6d31
commit
bc529f0076
10 changed files with 42 additions and 46 deletions
4
vendor/github.com/jedisct1/go-hpke-compact/go.mod
generated
vendored
4
vendor/github.com/jedisct1/go-hpke-compact/go.mod
generated
vendored
|
@ -3,6 +3,6 @@ module github.com/jedisct1/go-hpke-compact
|
|||
go 1.16
|
||||
|
||||
require (
|
||||
github.com/powerman/check v1.3.1
|
||||
golang.org/x/crypto v0.0.0-20210513164829-c07d793c2f9a
|
||||
github.com/powerman/check v1.5.0
|
||||
golang.org/x/crypto v0.0.0-20210616213533-5ff15b29337e
|
||||
)
|
||||
|
|
4
vendor/github.com/jedisct1/go-hpke-compact/hpke.go
generated
vendored
4
vendor/github.com/jedisct1/go-hpke-compact/hpke.go
generated
vendored
|
@ -619,12 +619,12 @@ func (context *ServerContext) ExporterSecret() []byte {
|
|||
return context.inner.exporterSecret
|
||||
}
|
||||
|
||||
// Export - Return the exporter secret
|
||||
// Export - Derive an arbitrary-long secret
|
||||
func (context *ClientContext) Export(exporterContext []byte, length uint16) ([]byte, error) {
|
||||
return context.inner.export(exporterContext, length)
|
||||
}
|
||||
|
||||
// Export - Return the exporter secret
|
||||
// Export - Derive an arbitrary-long secret
|
||||
func (context *ServerContext) Export(exporterContext []byte, length uint16) ([]byte, error) {
|
||||
return context.inner.export(exporterContext, length)
|
||||
}
|
||||
|
|
4
vendor/github.com/jedisct1/go-minisign/go.mod
generated
vendored
4
vendor/github.com/jedisct1/go-minisign/go.mod
generated
vendored
|
@ -1,5 +1,5 @@
|
|||
module github.com/jedisct1/go-minisign
|
||||
|
||||
go 1.15
|
||||
go 1.16
|
||||
|
||||
require golang.org/x/crypto v0.0.0-20201221181555-eec23a3978ad
|
||||
require golang.org/x/crypto v0.0.0-20210616213533-5ff15b29337e
|
||||
|
|
16
vendor/github.com/jedisct1/go-minisign/go.sum
generated
vendored
16
vendor/github.com/jedisct1/go-minisign/go.sum
generated
vendored
|
@ -1,8 +1,8 @@
|
|||
golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2/go.mod h1:djNgcEr1/C05ACkg1iLfiJU5Ep61QUkGW8qpdssI0+w=
|
||||
golang.org/x/crypto v0.0.0-20201221181555-eec23a3978ad h1:DN0cp81fZ3njFcrLCytUHRSUkqBjfTo4Tx9RJTWs0EY=
|
||||
golang.org/x/crypto v0.0.0-20201221181555-eec23a3978ad/go.mod h1:jdWPYTVW3xRLrWPugEBEK3UY2ZEsg3UU495nc5E+M+I=
|
||||
golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg=
|
||||
golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
|
||||
golang.org/x/sys v0.0.0-20191026070338-33540a1f6037/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
||||
golang.org/x/term v0.0.0-20201117132131-f5c789dd3221/go.mod h1:Nr5EML6q2oocZ2LXRh80K7BxOlk5/8JxuGnuhpl+muw=
|
||||
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
|
||||
golang.org/x/crypto v0.0.0-20210616213533-5ff15b29337e h1:gsTQYXdTw2Gq7RBsWvlQ91b+aEQ6bXFUngBGuR8sPpI=
|
||||
golang.org/x/crypto v0.0.0-20210616213533-5ff15b29337e/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc=
|
||||
golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg=
|
||||
golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
||||
golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
|
||||
golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
|
||||
golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=
|
||||
|
|
2
vendor/github.com/jedisct1/xsecretbox/go.mod
generated
vendored
2
vendor/github.com/jedisct1/xsecretbox/go.mod
generated
vendored
|
@ -2,4 +2,4 @@ module github.com/jedisct1/xsecretbox
|
|||
|
||||
go 1.16
|
||||
|
||||
require golang.org/x/crypto v0.0.0-20210322153248-0c34fe9e7dc2
|
||||
require golang.org/x/crypto v0.0.0-20210616213533-5ff15b29337e
|
||||
|
|
7
vendor/github.com/jedisct1/xsecretbox/go.sum
generated
vendored
7
vendor/github.com/jedisct1/xsecretbox/go.sum
generated
vendored
|
@ -1,8 +1,9 @@
|
|||
golang.org/x/crypto v0.0.0-20210322153248-0c34fe9e7dc2 h1:It14KIkyBFYkHkwZ7k45minvA9aorojkyjGk9KJ5B/w=
|
||||
golang.org/x/crypto v0.0.0-20210322153248-0c34fe9e7dc2/go.mod h1:T9bdIzuCu7OtxOm1hfPfRQxPLYneinmdGuTeoZ9dtd4=
|
||||
golang.org/x/crypto v0.0.0-20210616213533-5ff15b29337e h1:gsTQYXdTw2Gq7RBsWvlQ91b+aEQ6bXFUngBGuR8sPpI=
|
||||
golang.org/x/crypto v0.0.0-20210616213533-5ff15b29337e/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc=
|
||||
golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg=
|
||||
golang.org/x/sys v0.0.0-20201119102817-f84b799fce68 h1:nxC68pudNYkKU6jWhgrqdreuFiOQWj1Fs7T3VrH4Pjw=
|
||||
golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
|
||||
golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1 h1:SrN+KX8Art/Sf4HNj6Zcz06G7VEz+7w9tdXTPOZ7+l4=
|
||||
golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
|
||||
golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
|
||||
golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
|
||||
golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue