diff --git a/cryptobench_test.go b/cryptobench_test.go index 5e743d4d487d53305f69f25e6b8b81157eecf745..e4ad0cfd6cc8e4380e492cd71ad96e5119a7d082 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()