From f378ea5913d0e2f04ca55045a76a3c88ac087bf5 Mon Sep 17 00:00:00 2001 From: "Richard T. Carback III" <rick.carback@gmail.com> Date: Thu, 20 Oct 2022 20:27:17 +0000 Subject: [PATCH] fix package directive --- cryptobench_test.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/cryptobench_test.go b/cryptobench_test.go index 5e743d4d..e4ad0cfd 100644 --- a/cryptobench_test.go +++ b/cryptobench_test.go @@ -5,18 +5,19 @@ // LICENSE file. // //////////////////////////////////////////////////////////////////////////////// -package utils +package main import ( "testing" + "crypto/rand" + "strconv" + "gitlab.com/elixxir/crypto/cyclic" - "gitlab.com/elixxir/crypto/rsa" dh "gitlab.com/elixxir/crypto/diffieHellman" + "gitlab.com/elixxir/crypto/rsa" "gitlab.com/xx_network/crypto/csprng" "gitlab.com/xx_network/crypto/large" - "crypto/rand" - "strconv" ) // //tests Session keys are generated correctly @@ -78,7 +79,6 @@ func BenchmarkCreateDHSessionKey(b *testing.B) { } } - func BenchmarkRSASigCreate(b *testing.B) { // Generate keys sLocal := rsa.GetScheme() -- GitLab