3e27acb989
gocryptfs/internal/speed$ go test -bench . goos: linux goarch: amd64 pkg: github.com/rfjakob/gocryptfs/v2/internal/speed cpu: Intel(R) Core(TM) i5-3470 CPU @ 3.20GHz BenchmarkStupidGCM-4 263742 4523 ns/op 905.61 MB/s BenchmarkStupidGCMDecrypt-4 204858 5779 ns/op 708.76 MB/s BenchmarkGoGCM-4 291259 4095 ns/op 1000.25 MB/s BenchmarkGoGCMDecrypt-4 293886 4061 ns/op 1008.53 MB/s BenchmarkAESSIV-4 46537 25538 ns/op 160.39 MB/s BenchmarkAESSIVDecrypt-4 46770 25627 ns/op 159.83 MB/s BenchmarkXchacha-4 243619 4893 ns/op 837.03 MB/s BenchmarkXchachaDecrypt-4 248857 4793 ns/op 854.51 MB/s BenchmarkStupidXchacha-4 213717 5558 ns/op 736.99 MB/s BenchmarkStupidXchachaDecrypt-4 176635 6782 ns/op 603.96 MB/s PASS ok github.com/rfjakob/gocryptfs/v2/internal/speed 12.871s
77 lines
1.6 KiB
Go
77 lines
1.6 KiB
Go
package speed
|
|
|
|
import (
|
|
"crypto/aes"
|
|
"crypto/cipher"
|
|
"testing"
|
|
|
|
"golang.org/x/crypto/chacha20poly1305"
|
|
|
|
"github.com/rfjakob/gocryptfs/v2/internal/siv_aead"
|
|
"github.com/rfjakob/gocryptfs/v2/internal/stupidgcm"
|
|
)
|
|
|
|
/*
|
|
Make the "-speed" benchmarks also accessible to the standard test system.
|
|
Example run:
|
|
|
|
$ go test -bench .
|
|
BenchmarkStupidGCM-2 100000 22552 ns/op 181.62 MB/s
|
|
BenchmarkGoGCM-2 20000 81871 ns/op 50.03 MB/s
|
|
BenchmarkAESSIV-2 10000 104623 ns/op 39.15 MB/s
|
|
PASS
|
|
ok github.com/rfjakob/gocryptfs/v2/internal/speed 6.022s
|
|
*/
|
|
|
|
func BenchmarkStupidGCM(b *testing.B) {
|
|
bStupidGCM(b)
|
|
}
|
|
|
|
func BenchmarkStupidGCMDecrypt(b *testing.B) {
|
|
if stupidgcm.BuiltWithoutOpenssl {
|
|
b.Skip("openssl has been disabled at compile-time")
|
|
}
|
|
bDecrypt(b, stupidgcm.New(randBytes(32), false))
|
|
}
|
|
|
|
func BenchmarkGoGCM(b *testing.B) {
|
|
bGoGCM(b)
|
|
}
|
|
|
|
func BenchmarkGoGCMDecrypt(b *testing.B) {
|
|
gAES, err := aes.NewCipher(randBytes(32))
|
|
if err != nil {
|
|
b.Fatal(err)
|
|
}
|
|
gGCM, err := cipher.NewGCMWithNonceSize(gAES, 16)
|
|
if err != nil {
|
|
b.Fatal(err)
|
|
}
|
|
bDecrypt(b, gGCM)
|
|
}
|
|
|
|
func BenchmarkAESSIV(b *testing.B) {
|
|
bAESSIV(b)
|
|
}
|
|
|
|
func BenchmarkAESSIVDecrypt(b *testing.B) {
|
|
bEncrypt(b, siv_aead.New(randBytes(64)))
|
|
}
|
|
|
|
func BenchmarkXchacha(b *testing.B) {
|
|
bXchacha20poly1305(b)
|
|
}
|
|
|
|
func BenchmarkXchachaDecrypt(b *testing.B) {
|
|
c, _ := chacha20poly1305.NewX(randBytes(32))
|
|
bDecrypt(b, c)
|
|
}
|
|
|
|
func BenchmarkStupidXchacha(b *testing.B) {
|
|
bStupidXchacha(b)
|
|
}
|
|
|
|
func BenchmarkStupidXchachaDecrypt(b *testing.B) {
|
|
bDecrypt(b, stupidgcm.NewXchacha20poly1305(randBytes(32)))
|
|
}
|