Skip to content
Snippets Groups Projects
Commit cdeda572 authored by Yawning Angel's avatar Yawning Angel
Browse files

Change the import path for go.crypto.

The Go developers decided to move the go.crypto repository to
golang.org/x/crypto, and also to transition from hg to git.  The tip of
tree code.google.com copy of the code is broken due to the import paths
pointing at the new repository.

While the change here is simple (just update the import location), this
affects packagers as it now expects the updated package.  Sorry for the
inconveneince, I blame the Go people.
parent 6ba5b492
No related branches found
No related tags found
No related merge requests found
Changes in version 0.0.4 - UNRELEASED Changes in version 0.0.4 - UNRELEASED
- Improve the runtime performance of the obfs4 handshake tests. - Improve the runtime performance of the obfs4 handshake tests.
- Changed the go.crypto import path to the new location (golang.org/x/crypto).
Changes in version 0.0.3 - 2014-10-01 Changes in version 0.0.3 - 2014-10-01
- Change the obfs4 bridge line format to use a "cert" argument instead of the - Change the obfs4 bridge line format to use a "cert" argument instead of the
......
...@@ -34,7 +34,7 @@ listed for clarity. ...@@ -34,7 +34,7 @@ listed for clarity.
* Go 1.2.0 or later. Prior versions of Go (Eg: 1.0.2) are missing certain * Go 1.2.0 or later. Prior versions of Go (Eg: 1.0.2) are missing certain
important parts of the runtime library like a SHA256 implementation. important parts of the runtime library like a SHA256 implementation.
* go.crypto (https://code.google.com/p/go.crypto) * go.crypto (https://golang.org/x/crypto)
* go.net (https://code.google.com/p/go.net) * go.net (https://code.google.com/p/go.net)
* ed25519/extra25519 (https://github.com/agl/ed25519/extra25519) * ed25519/extra25519 (https://github.com/agl/ed25519/extra25519)
* SipHash-2-4 (https://github.com/dchest/siphash) * SipHash-2-4 (https://github.com/dchest/siphash)
......
...@@ -43,8 +43,8 @@ import ( ...@@ -43,8 +43,8 @@ import (
"fmt" "fmt"
"io" "io"
"code.google.com/p/go.crypto/curve25519" "golang.org/x/crypto/curve25519"
"code.google.com/p/go.crypto/hkdf" "golang.org/x/crypto/hkdf"
"github.com/agl/ed25519/extra25519" "github.com/agl/ed25519/extra25519"
......
...@@ -67,7 +67,7 @@ import ( ...@@ -67,7 +67,7 @@ import (
"fmt" "fmt"
"io" "io"
"code.google.com/p/go.crypto/nacl/secretbox" "golang.org/x/crypto/nacl/secretbox"
"git.torproject.org/pluggable-transports/obfs4.git/common/csrand" "git.torproject.org/pluggable-transports/obfs4.git/common/csrand"
"git.torproject.org/pluggable-transports/obfs4.git/common/drbg" "git.torproject.org/pluggable-transports/obfs4.git/common/drbg"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment