diff --git a/p503/arith_amd64.go b/p503/arith_amd64.go index dd7d3e1..ffb3a83 100644 --- a/p503/arith_amd64.go +++ b/p503/arith_amd64.go @@ -2,7 +2,7 @@ package p503 -import cpu "github.com/cloudflare/p751sidh/internal/utils" +import cpu "github.com/cloudflare/sidh/internal/utils" // There couple of reasons for having those variables here: // * to have an access to them from assembly diff --git a/p751/arith_amd64.go b/p751/arith_amd64.go index 9bc7a6e..49d336a 100644 --- a/p751/arith_amd64.go +++ b/p751/arith_amd64.go @@ -2,7 +2,7 @@ package p751 -import cpu "github.com/cloudflare/p751sidh/internal/utils" +import cpu "github.com/cloudflare/sidh/internal/utils" // There couple of reasons for having those variables here: // * to have an access to them from assembly diff --git a/p751/arith_amd64_test.go b/p751/arith_amd64_test.go index 3c278f5..c444176 100644 --- a/p751/arith_amd64_test.go +++ b/p751/arith_amd64_test.go @@ -6,6 +6,7 @@ import ( . "github.com/cloudflare/sidh/internal/isogeny" cpu "github.com/cloudflare/sidh/internal/utils" + "reflect" "testing" "testing/quick" )