crypto_test.go 672 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. package crypto
  2. import (
  3. "bytes"
  4. "fmt"
  5. "testing"
  6. . "github.com/smartystreets/goconvey/convey"
  7. )
  8. var (
  9. rsaBase64 = make([]byte, 1000)
  10. aesBase64 = make([]byte, 5000000)
  11. )
  12. func TestEncrypt(t *testing.T) {
  13. Convey("encrypt", t, func() {
  14. // TODO
  15. })
  16. }
  17. func BenchmarkBytesByFMT(b *testing.B) {
  18. for i := 0; i < b.N; i++ {
  19. _ = fmt.Sprintf("%04x%s%s", len(rsaBase64), rsaBase64, aesBase64)
  20. }
  21. }
  22. func BenchmarkBytesByBuffer(b *testing.B) {
  23. var buf bytes.Buffer
  24. b.ResetTimer()
  25. for i := 0; i < b.N; i++ {
  26. fmt.Fprintf(&buf, "%04x", len(rsaBase64))
  27. buf.Write(rsaBase64)
  28. buf.Write(aesBase64)
  29. b.StopTimer()
  30. buf.Reset()
  31. b.StartTimer()
  32. _ = buf.Bytes()
  33. }
  34. }