Skip to content

Commit 4380243

Browse files
authored
fix: bump crypto package to fix security vulnerability (#96)
fixes the vulnerability reported in #93
1 parent 66f6b62 commit 4380243

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

go.mod

+1-2
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ require (
3131
github.com/lestrrat-go/httpcc v1.0.0 // indirect
3232
github.com/lestrrat-go/iter v1.0.1 // indirect
3333
github.com/lestrrat-go/option v1.0.0 // indirect
34-
github.com/valyala/fasthttp v1.35.0 // indirect
3534
)
3635

3736
require (
@@ -68,7 +67,7 @@ require (
6867
github.com/youmark/pkcs8 v0.0.0-20181117223130-1be2e3e5546d // indirect
6968
go.uber.org/atomic v1.7.0 // indirect
7069
go.uber.org/multierr v1.6.0 // indirect
71-
golang.org/x/crypto v0.0.0-20220214200702-86341886e292 // indirect
70+
golang.org/x/crypto v0.0.0-20220622213112-05595931fe9d // indirect
7271
golang.org/x/net v0.0.0-20220225172249-27dd8689420f // indirect
7372
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c // indirect
7473
golang.org/x/sys v0.0.0-20220227234510-4e6760a101f9 // indirect

go.sum

+2
Original file line numberDiff line numberDiff line change
@@ -238,6 +238,8 @@ golang.org/x/crypto v0.0.0-20210817164053-32db794688a5/go.mod h1:GvvjBRRGRdwPK5y
238238
golang.org/x/crypto v0.0.0-20211215153901-e495a2d5b3d3/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4=
239239
golang.org/x/crypto v0.0.0-20220214200702-86341886e292 h1:f+lwQ+GtmgoY+A2YaQxlSOnDjXcQ7ZRLWOHbC6HtRqE=
240240
golang.org/x/crypto v0.0.0-20220214200702-86341886e292/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4=
241+
golang.org/x/crypto v0.0.0-20220622213112-05595931fe9d h1:sK3txAijHtOK88l68nt020reeT1ZdKLIYetKl95FzVY=
242+
golang.org/x/crypto v0.0.0-20220622213112-05595931fe9d/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4=
241243
golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA=
242244
golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE=
243245
golang.org/x/lint v0.0.0-20190227174305-5b3e6a55c961/go.mod h1:wehouNa3lNwaWXcvxsM5YxQ5yQlVC4a0KAMCusXpPoU=

0 commit comments

Comments
 (0)