From 89fef80d32708874c95742db0a7b593bcfd3b31d Mon Sep 17 00:00:00 2001 From: Jakob Unterwurzacher Date: Sun, 4 Oct 2015 14:36:20 +0200 Subject: Run go fmt --- openssl_benchmark/openssl_test.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'openssl_benchmark') diff --git a/openssl_benchmark/openssl_test.go b/openssl_benchmark/openssl_test.go index f0b7bc5..e80410f 100644 --- a/openssl_benchmark/openssl_test.go +++ b/openssl_benchmark/openssl_test.go @@ -7,10 +7,10 @@ package benchmark import ( "bytes" - "testing" - "github.com/spacemonkeygo/openssl" "crypto/aes" "crypto/cipher" + "github.com/spacemonkeygo/openssl" + "testing" ) func BenchmarkAESGCMSeal4K(b *testing.B) { @@ -86,7 +86,7 @@ func BenchmarkOpensslGCMenc4K(b *testing.B) { func BenchmarkOpensslGCMdec4K(b *testing.B) { buf := makeOpensslCiphertext() - b.SetBytes(int64(1024*4)) + b.SetBytes(int64(1024 * 4)) tag := buf[4096:] buf = buf[0:4096] -- cgit v1.2.3