Change the import paths to point to the tp.o repository.

merge-requests/3/head
Yawning Angel 10 years ago
parent 0fa8adc752
commit 8a3eb4b309

@ -37,7 +37,7 @@ import (
"github.com/dchest/siphash"
"github.com/yawning/obfs4/csrand"
"git.torproject.org/pluggable-transports/obfs4.git/csrand"
)
// Size is the length of the HashDrbg output.

@ -69,8 +69,8 @@ import (
"code.google.com/p/go.crypto/nacl/secretbox"
"github.com/yawning/obfs4/csrand"
"github.com/yawning/obfs4/drbg"
"git.torproject.org/pluggable-transports/obfs4.git/csrand"
"git.torproject.org/pluggable-transports/obfs4.git/drbg"
)
const (

@ -38,9 +38,9 @@ import (
"strconv"
"time"
"github.com/yawning/obfs4/csrand"
"github.com/yawning/obfs4/framing"
"github.com/yawning/obfs4/ntor"
"git.torproject.org/pluggable-transports/obfs4.git/csrand"
"git.torproject.org/pluggable-transports/obfs4.git/framing"
"git.torproject.org/pluggable-transports/obfs4.git/ntor"
)
const (

@ -31,7 +31,7 @@ import (
"bytes"
"testing"
"github.com/yawning/obfs4/ntor"
"git.torproject.org/pluggable-transports/obfs4.git/ntor"
)
func TestHandshakeNtor(t *testing.T) {

@ -50,7 +50,7 @@ import (
"github.com/agl/ed25519/extra25519"
"github.com/yawning/obfs4/csrand"
"git.torproject.org/pluggable-transports/obfs4.git/csrand"
)
const (

@ -42,9 +42,9 @@ import (
"syscall"
"time"
"github.com/yawning/obfs4/drbg"
"github.com/yawning/obfs4/framing"
"github.com/yawning/obfs4/ntor"
"git.torproject.org/pluggable-transports/obfs4.git/drbg"
"git.torproject.org/pluggable-transports/obfs4.git/framing"
"git.torproject.org/pluggable-transports/obfs4.git/ntor"
)
const (

@ -62,9 +62,9 @@ import (
"syscall"
"git.torproject.org/pluggable-transports/goptlib.git"
"github.com/yawning/obfs4"
"github.com/yawning/obfs4/csrand"
"github.com/yawning/obfs4/ntor"
"git.torproject.org/pluggable-transports/obfs4.git"
"git.torproject.org/pluggable-transports/obfs4.git/csrand"
"git.torproject.org/pluggable-transports/obfs4.git/ntor"
)
const (

@ -32,7 +32,7 @@ import (
"code.google.com/p/go.net/proxy"
"github.com/yawning/obfs4"
"git.torproject.org/pluggable-transports/obfs4.git"
)
// getProxyDialer is a trival wrapper around the go.net/proxy package to avoid

@ -34,8 +34,8 @@ import (
"io"
"syscall"
"github.com/yawning/obfs4/drbg"
"github.com/yawning/obfs4/framing"
"git.torproject.org/pluggable-transports/obfs4.git/drbg"
"git.torproject.org/pluggable-transports/obfs4.git/framing"
)
const (

@ -34,7 +34,7 @@ import (
"github.com/dchest/siphash"
"github.com/yawning/obfs4/csrand"
"git.torproject.org/pluggable-transports/obfs4.git/csrand"
)
// maxFilterSize is the maximum capacity of the replay filter. The busiest

@ -32,8 +32,8 @@ import (
"fmt"
"math/rand"
"github.com/yawning/obfs4/csrand"
"github.com/yawning/obfs4/drbg"
"git.torproject.org/pluggable-transports/obfs4.git/csrand"
"git.torproject.org/pluggable-transports/obfs4.git/drbg"
)
const (

@ -31,7 +31,7 @@ import (
"fmt"
"testing"
"github.com/yawning/obfs4/drbg"
"git.torproject.org/pluggable-transports/obfs4.git/drbg"
)
const debug = false

Loading…
Cancel
Save