From fd2c2431a08c4f2a17b7a8aa9edfadece67275ca Mon Sep 17 00:00:00 2001 From: Brandon Wiley Date: Thu, 31 Mar 2016 12:47:49 -0500 Subject: Changed import paths --- common/drbg/hash_drbg.go | 2 +- common/ntor/ntor.go | 2 +- common/probdist/weighted_dist.go | 4 ++-- common/probdist/weighted_dist_test.go | 2 +- common/replayfilter/replay_filter.go | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/common/drbg/hash_drbg.go b/common/drbg/hash_drbg.go index 7feb9e8..cc4e8b9 100644 --- a/common/drbg/hash_drbg.go +++ b/common/drbg/hash_drbg.go @@ -37,7 +37,7 @@ import ( "github.com/dchest/siphash" - "git.torproject.org/pluggable-transports/obfs4.git/common/csrand" + "github.com/OperatorFoundation/obfs4/common/csrand" ) // Size is the length of the HashDrbg output. diff --git a/common/ntor/ntor.go b/common/ntor/ntor.go index 4f6ab27..0994782 100644 --- a/common/ntor/ntor.go +++ b/common/ntor/ntor.go @@ -48,7 +48,7 @@ import ( "github.com/agl/ed25519/extra25519" - "git.torproject.org/pluggable-transports/obfs4.git/common/csrand" + "github.com/OperatorFoundation/obfs4/common/csrand" ) const ( diff --git a/common/probdist/weighted_dist.go b/common/probdist/weighted_dist.go index 5f8e88e..2822ce6 100644 --- a/common/probdist/weighted_dist.go +++ b/common/probdist/weighted_dist.go @@ -37,8 +37,8 @@ import ( "math/rand" "sync" - "git.torproject.org/pluggable-transports/obfs4.git/common/csrand" - "git.torproject.org/pluggable-transports/obfs4.git/common/drbg" + "github.com/OperatorFoundation/obfs4/common/csrand" + "github.com/OperatorFoundation/obfs4/common/drbg" ) const ( diff --git a/common/probdist/weighted_dist_test.go b/common/probdist/weighted_dist_test.go index b705add..ca7247c 100644 --- a/common/probdist/weighted_dist_test.go +++ b/common/probdist/weighted_dist_test.go @@ -31,7 +31,7 @@ import ( "fmt" "testing" - "git.torproject.org/pluggable-transports/obfs4.git/common/drbg" + "github.com/OperatorFoundation/obfs4/common/drbg" ) const debug = false diff --git a/common/replayfilter/replay_filter.go b/common/replayfilter/replay_filter.go index 95cc5d6..5513361 100644 --- a/common/replayfilter/replay_filter.go +++ b/common/replayfilter/replay_filter.go @@ -40,7 +40,7 @@ import ( "github.com/dchest/siphash" - "git.torproject.org/pluggable-transports/obfs4.git/common/csrand" + "github.com/OperatorFoundation/obfs4/common/csrand" ) // maxFilterSize is the maximum capacity of a replay filter. This value is -- cgit v1.2.3