ed25519 icon indicating copy to clipboard operation
ed25519 copied to clipboard

Use golang.org/x/crypto/curve25519

Open tv42 opened this issue 10 years ago • 0 comments

diff --git i/extra25519/extra25519_test.go w/extra25519/extra25519_test.go
index 1e1dbdc..55be8ec 100644
--- i/extra25519/extra25519_test.go
+++ w/extra25519/extra25519_test.go
@@ -9,8 +9,8 @@ import (
        "crypto/rand"
        "testing"

-       "code.google.com/p/go.crypto/curve25519"
        "github.com/agl/ed25519"
+       "golang.org/x/crypto/curve25519"
 )

 func TestCurve25519Conversion(t *testing.T) {

Also, please run gofmt ;)

tv42 avatar Mar 11 '15 14:03 tv42