aboutsummaryrefslogtreecommitdiff
path: root/src/crypto/cipher
diff options
context:
space:
mode:
Diffstat (limited to 'src/crypto/cipher')
-rw-r--r--src/crypto/cipher/gcm_test.go36
1 files changed, 0 insertions, 36 deletions
diff --git a/src/crypto/cipher/gcm_test.go b/src/crypto/cipher/gcm_test.go
index 7b9d1852d7..3556146ea6 100644
--- a/src/crypto/cipher/gcm_test.go
+++ b/src/crypto/cipher/gcm_test.go
@@ -654,39 +654,3 @@ func TestGCMAsm(t *testing.T) {
}
}
}
-
-func BenchmarkGCMSeal(b *testing.B) {
- key, _ := hex.DecodeString("ab72c77b97cb5fe9a382d9fe81ffdbed")
- nonce, _ := hex.DecodeString("54cc7dc2c37ec006bcc6d1db")
- plaintext, _ := hex.DecodeString("f1cc3818e421876bb6b8bbd6c9")
-
- aes, _ := aes.NewCipher(key)
- aesgcm, _ := cipher.NewGCM(aes)
-
- ciphertext := make([]byte, 32)
- b.SetBytes(int64(len(plaintext)))
- b.ResetTimer()
- for i := 0; i < b.N; i++ {
- _ = aesgcm.Seal(ciphertext[:0], nonce, plaintext, nil)
- }
-}
-
-func BenchmarkGCMOpen(b *testing.B) {
- key, _ := hex.DecodeString("ab72c77b97cb5fe9a382d9fe81ffdbed")
- nonce, _ := hex.DecodeString("54cc7dc2c37ec006bcc6d1db")
- plaintext, _ := hex.DecodeString("f1cc3818e421876bb6b8bbd6c9")
-
- aes, _ := aes.NewCipher(key)
- aesgcm, _ := cipher.NewGCM(aes)
-
- ciphertext := aesgcm.Seal(nil, nonce, plaintext, nil)
-
- b.SetBytes(int64(len(ciphertext)))
- b.ResetTimer()
- for i := 0; i < b.N; i++ {
- _, err := aesgcm.Open(plaintext[:0], nonce, ciphertext, nil)
- if err != nil {
- b.Fatal(err)
- }
- }
-}