summaryrefslogtreecommitdiff
path: root/go.mod
diff options
context:
space:
mode:
authorkali kaneko <kali@leap.se>2022-04-06 16:32:30 +0200
committerSam Whited <sam@samwhited.com>2022-04-19 09:09:11 -0400
commitcefa2c334751efbf1d4b479fb827c21c5b801a71 (patch)
treef503f41c0ada2eaa14b209fafd8b3a0e84bc1e2c /go.mod
parent5e8594262f537efd02d1a3d7ad7d7e9013f1e76e (diff)
pin obfs4 version pre-elligator fix
Diffstat (limited to 'go.mod')
-rw-r--r--go.mod6
1 files changed, 3 insertions, 3 deletions
diff --git a/go.mod b/go.mod
index 5514555..7ea5ce8 100644
--- a/go.mod
+++ b/go.mod
@@ -4,14 +4,14 @@ go 1.17
require (
git.torproject.org/pluggable-transports/goptlib.git v1.0.0
- gitlab.com/yawning/obfs4.git v0.0.0-20220204003609-77af0cba934d
+ // Do not update obfs4 past e330d1b7024b, a backwards incompatible change was
+ // made that will break negotiation.
+ gitlab.com/yawning/obfs4.git v0.0.0-20210511220700-e330d1b7024b
golang.org/x/net v0.0.0-20210226172049-e18ecbb05110
)
require (
- filippo.io/edwards25519 v1.0.0-rc.1.0.20210721174708-390f27c3be20 // indirect
github.com/dchest/siphash v1.2.1 // indirect
- gitlab.com/yawning/edwards25519-extra.git v0.0.0-20211229043746-2f91fcc9fbdb // indirect
golang.org/x/crypto v0.0.0-20210711020723-a769d52b0f97 // indirect
golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1 // indirect
)