poly1305_test.go 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. // Copyright 2012 The Go Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style
  3. // license that can be found in the LICENSE file.
  4. package poly1305
  5. import (
  6. "bytes"
  7. "testing"
  8. "unsafe"
  9. )
  10. var testData = []struct {
  11. in, k, correct []byte
  12. }{
  13. {
  14. []byte("Hello world!"),
  15. []byte("this is 32-byte key for Poly1305"),
  16. []byte{0xa6, 0xf7, 0x45, 0x00, 0x8f, 0x81, 0xc9, 0x16, 0xa2, 0x0d, 0xcc, 0x74, 0xee, 0xf2, 0xb2, 0xf0},
  17. },
  18. {
  19. make([]byte, 32),
  20. []byte("this is 32-byte key for Poly1305"),
  21. []byte{0x49, 0xec, 0x78, 0x09, 0x0e, 0x48, 0x1e, 0xc6, 0xc2, 0x6b, 0x33, 0xb9, 0x1c, 0xcc, 0x03, 0x07},
  22. },
  23. {
  24. make([]byte, 2007),
  25. []byte("this is 32-byte key for Poly1305"),
  26. []byte{0xda, 0x84, 0xbc, 0xab, 0x02, 0x67, 0x6c, 0x38, 0xcd, 0xb0, 0x15, 0x60, 0x42, 0x74, 0xc2, 0xaa},
  27. },
  28. {
  29. make([]byte, 2007),
  30. make([]byte, 32),
  31. make([]byte, 16),
  32. },
  33. }
  34. func testSum(t *testing.T, unaligned bool) {
  35. var out [16]byte
  36. var key [32]byte
  37. for i, v := range testData {
  38. in := v.in
  39. if unaligned {
  40. in = unalignBytes(in)
  41. }
  42. copy(key[:], v.k)
  43. Sum(&out, in, &key)
  44. if !bytes.Equal(out[:], v.correct) {
  45. t.Errorf("%d: expected %x, got %x", i, v.correct, out[:])
  46. }
  47. }
  48. }
  49. func TestSum(t *testing.T) { testSum(t, false) }
  50. func TestSumUnaligned(t *testing.T) { testSum(t, true) }
  51. func benchmark(b *testing.B, size int, unaligned bool) {
  52. var out [16]byte
  53. var key [32]byte
  54. in := make([]byte, size)
  55. if unaligned {
  56. in = unalignBytes(in)
  57. }
  58. b.SetBytes(int64(len(in)))
  59. b.ResetTimer()
  60. for i := 0; i < b.N; i++ {
  61. Sum(&out, in, &key)
  62. }
  63. }
  64. func Benchmark64(b *testing.B) { benchmark(b, 64, false) }
  65. func Benchmark1K(b *testing.B) { benchmark(b, 1024, false) }
  66. func Benchmark64Unaligned(b *testing.B) { benchmark(b, 64, true) }
  67. func Benchmark1KUnaligned(b *testing.B) { benchmark(b, 1024, true) }
  68. func unalignBytes(in []byte) []byte {
  69. out := make([]byte, len(in)+1)
  70. if uintptr(unsafe.Pointer(&out[0]))&(unsafe.Alignof(uint32(0))-1) == 0 {
  71. out = out[1:]
  72. } else {
  73. out = out[:len(in)]
  74. }
  75. copy(out, in)
  76. return out
  77. }