1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
|
package zbase32_test
import (
"encoding/base32"
"encoding/hex"
"testing"
"github.com/tv42/zbase32"
)
func BenchmarkEncodeBytes(b *testing.B) {
decoded := []byte{
0xc0, 0x73, 0x62, 0x4a, 0xaf, 0x39, 0x78, 0x51,
0x4e, 0xf8, 0x44, 0x3b, 0xb2, 0xa8, 0x59, 0xc7,
0x5f, 0xc3, 0xcc, 0x6a, 0xf2, 0x6d, 0x5a, 0xaa,
}
dst := make([]byte, zbase32.EncodedLen(len(decoded)))
b.ResetTimer()
for i := 0; i < b.N; i++ {
n := zbase32.Encode(dst, decoded)
_ = dst[:n]
}
}
func BenchmarkEncodeBase32(b *testing.B) {
decoded := []byte{
0xc0, 0x73, 0x62, 0x4a, 0xaf, 0x39, 0x78, 0x51,
0x4e, 0xf8, 0x44, 0x3b, 0xb2, 0xa8, 0x59, 0xc7,
0x5f, 0xc3, 0xcc, 0x6a, 0xf2, 0x6d, 0x5a, 0xaa,
}
dst := make([]byte, base32.StdEncoding.EncodedLen(len(decoded)))
b.ResetTimer()
for i := 0; i < b.N; i++ {
base32.StdEncoding.Encode(dst, decoded)
_ = dst
}
}
func BenchmarkEncodeHex(b *testing.B) {
decoded := []byte{
0xc0, 0x73, 0x62, 0x4a, 0xaf, 0x39, 0x78, 0x51,
0x4e, 0xf8, 0x44, 0x3b, 0xb2, 0xa8, 0x59, 0xc7,
0x5f, 0xc3, 0xcc, 0x6a, 0xf2, 0x6d, 0x5a, 0xaa,
}
dst := make([]byte, hex.EncodedLen(len(decoded)))
b.ResetTimer()
for i := 0; i < b.N; i++ {
n := hex.Encode(dst, decoded)
_ = dst[:n]
}
}
func BenchmarkDecodeBytes(b *testing.B) {
encoded := []byte("ab3sr1ix8fhfnuzaeo75fkn3a7xh8udk6jsiiko")
dst := make([]byte, zbase32.DecodedLen(len(encoded)))
b.ResetTimer()
for i := 0; i < b.N; i++ {
n, err := zbase32.Decode(dst, encoded)
if err != nil {
b.Fatalf("decode error: %v", err)
}
_ = dst[:n]
}
}
func BenchmarkDecodeBase32(b *testing.B) {
encoded := []byte("YBZWESVPHF4FCTXYIQ53FKCZY5P4HTDK6JWVVKQ=")
dst := make([]byte, base32.StdEncoding.DecodedLen(len(encoded)))
b.ResetTimer()
for i := 0; i < b.N; i++ {
n, err := base32.StdEncoding.Decode(dst, encoded)
if err != nil {
b.Fatalf("decode error: %v", err)
}
_ = dst[:n]
}
}
func BenchmarkDecodeHex(b *testing.B) {
encoded := []byte("c073624aaf3978514ef8443bb2a859c75fc3cc6af26d5aaa")
dst := make([]byte, hex.DecodedLen(len(encoded)))
b.ResetTimer()
for i := 0; i < b.N; i++ {
n, err := hex.Decode(dst, encoded)
if err != nil {
b.Fatalf("decode error: %v", err)
}
_ = dst[:n]
}
}
|