-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Benchmark tests for AEAD in Golang.
It tests encrypting and decrypting 16k data with different AEAD primitives. Output on a Xeon CPU: BenchmarkEncryptDecrypt/AES128_GCM-8 23367 53415 ns/op BenchmarkEncryptDecrypt/AES256_GCM-8 21590 53626 ns/op BenchmarkEncryptDecrypt/CHACHA20_POLY1305-8 27309 43254 ns/op BenchmarkEncryptDecrypt/XCHACHA20_POLY1305-8 27746 47047 ns/op BenchmarkEncryptDecrypt/AES128_CTR_HMAC-8 6621 188172 ns/op BenchmarkEncryptDecrypt/AES256_CTR_HMAC-8 6144 180011 ns/op BenchmarkEncryptDecrypt/AES128_GCM_SIV-8 2434 484267 ns/op BenchmarkEncryptDecrypt/AES256_GCM_SIV-8 2368 494740 ns/op PiperOrigin-RevId: 613950607 Change-Id: I30ab2aa975cfe32b41b1cfd7035a29000f1c4512
- Loading branch information
1 parent
f3a178b
commit 2cf8ef2
Showing
2 changed files
with
89 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
// Copyright 2024 Google LLC | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
// | ||
// ////////////////////////////////////////////////////////////////////////////// | ||
|
||
package aead_test | ||
|
||
import ( | ||
"testing" | ||
|
||
"github.com/tink-crypto/tink-go/v2/aead" | ||
"github.com/tink-crypto/tink-go/v2/keyset" | ||
"github.com/tink-crypto/tink-go/v2/subtle/random" | ||
tinkpb "github.com/tink-crypto/tink-go/v2/proto/tink_go_proto" | ||
) | ||
|
||
// Benchmarks for AEAD algorithms. | ||
|
||
const plaintextSize = 16 * 1024 | ||
const associatedDataSize = 256 | ||
|
||
func BenchmarkEncryptDecrypt(b *testing.B) { | ||
var testCases = []struct { | ||
name string | ||
template *tinkpb.KeyTemplate | ||
}{ | ||
{ | ||
name: "AES128_GCM", | ||
template: aead.AES128GCMKeyTemplate(), | ||
}, { | ||
name: "AES256_GCM", | ||
template: aead.AES256GCMKeyTemplate(), | ||
}, { | ||
name: "CHACHA20_POLY1305", | ||
template: aead.ChaCha20Poly1305KeyTemplate(), | ||
}, { | ||
name: "XCHACHA20_POLY1305", | ||
template: aead.XChaCha20Poly1305KeyTemplate(), | ||
}, { | ||
name: "AES128_CTR_HMAC", | ||
template: aead.AES128CTRHMACSHA256KeyTemplate(), | ||
}, { | ||
name: "AES256_CTR_HMAC", | ||
template: aead.AES256CTRHMACSHA256KeyTemplate(), | ||
}, { | ||
name: "AES128_GCM_SIV", | ||
template: aead.AES128GCMSIVKeyTemplate(), | ||
}, { | ||
name: "AES256_GCM_SIV", | ||
template: aead.AES256GCMSIVKeyTemplate(), | ||
}, | ||
} | ||
for _, tc := range testCases { | ||
b.Run(tc.name, func(b *testing.B) { | ||
handle, err := keyset.NewHandle(tc.template) | ||
if err != nil { | ||
b.Fatal(err) | ||
} | ||
primitive, err := aead.New(handle) | ||
if err != nil { | ||
b.Fatal(err) | ||
} | ||
plaintext := random.GetRandomBytes(plaintextSize) | ||
associatedData := random.GetRandomBytes(associatedDataSize) | ||
b.ResetTimer() | ||
for i := 0; i < b.N; i++ { | ||
ciphertext, err := primitive.Encrypt(plaintext, associatedData) | ||
if err != nil { | ||
b.Fatal(err) | ||
} | ||
if _, err = primitive.Decrypt(ciphertext, associatedData); err != nil { | ||
b.Error(err) | ||
} | ||
} | ||
}) | ||
} | ||
} |