]> Cypherpunks.ru repositories - govpn.git/commitdiff
Official repositories moved to another URL
authorSergey Matveev <stargrave@stargrave.org>
Sat, 17 Jan 2015 17:12:39 +0000 (20:12 +0300)
committerSergey Matveev <stargrave@stargrave.org>
Sat, 17 Jan 2015 17:12:39 +0000 (20:12 +0300)
Signed-off-by: Sergey Matveev <stargrave@stargrave.org>
govpn.go
handshake.go

index c22a1e6e517b8d930836da2b5a709ecfc0c073d3..c0f762a9fc3796d270123cc5c611f2ffe8a069df 100644 (file)
--- a/govpn.go
+++ b/govpn.go
@@ -34,8 +34,8 @@ import (
        "os/signal"
        "time"
 
-       "code.google.com/p/go.crypto/poly1305"
-       "code.google.com/p/go.crypto/salsa20"
+       "golang.org/x/crypto/poly1305"
+       "golang.org/x/crypto/salsa20"
 )
 
 var (
index b02f0b19157fd4f3dd2dbc68870849e860583b48..697e75c50170a7a48a65e5eaf660fce81ffcd3e1 100644 (file)
@@ -26,10 +26,10 @@ import (
        "net"
        "time"
 
-       "code.google.com/p/go.crypto/curve25519"
-       "code.google.com/p/go.crypto/poly1305"
-       "code.google.com/p/go.crypto/salsa20"
-       "code.google.com/p/go.crypto/salsa20/salsa"
+       "golang.org/x/crypto/curve25519"
+       "golang.org/x/crypto/poly1305"
+       "golang.org/x/crypto/salsa20"
+       "golang.org/x/crypto/salsa20/salsa"
 )
 
 type Handshake struct {