scrypt_test.go 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  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 scrypt
  5. import (
  6. "bytes"
  7. "testing"
  8. )
  9. type testVector struct {
  10. password string
  11. salt string
  12. N, r, p int
  13. output []byte
  14. }
  15. var good = []testVector{
  16. {
  17. "",
  18. "",
  19. 16, 1, 1,
  20. []byte{
  21. 0x77, 0xd6, 0x57, 0x62, 0x38, 0x65, 0x7b, 0x20, 0x3b,
  22. 0x19, 0xca, 0x42, 0xc1, 0x8a, 0x04, 0x97, 0xf1, 0x6b,
  23. 0x48, 0x44, 0xe3, 0x07, 0x4a, 0xe8, 0xdf, 0xdf, 0xfa,
  24. 0x3f, 0xed, 0xe2, 0x14, 0x42, 0xfc, 0xd0, 0x06, 0x9d,
  25. 0xed, 0x09, 0x48, 0xf8, 0x32, 0x6a, 0x75, 0x3a, 0x0f,
  26. 0xc8, 0x1f, 0x17, 0xe8, 0xd3, 0xe0, 0xfb, 0x2e, 0x0d,
  27. 0x36, 0x28, 0xcf, 0x35, 0xe2, 0x0c, 0x38, 0xd1, 0x89,
  28. 0x06,
  29. },
  30. },
  31. {
  32. "password",
  33. "NaCl",
  34. 1024, 8, 16,
  35. []byte{
  36. 0xfd, 0xba, 0xbe, 0x1c, 0x9d, 0x34, 0x72, 0x00, 0x78,
  37. 0x56, 0xe7, 0x19, 0x0d, 0x01, 0xe9, 0xfe, 0x7c, 0x6a,
  38. 0xd7, 0xcb, 0xc8, 0x23, 0x78, 0x30, 0xe7, 0x73, 0x76,
  39. 0x63, 0x4b, 0x37, 0x31, 0x62, 0x2e, 0xaf, 0x30, 0xd9,
  40. 0x2e, 0x22, 0xa3, 0x88, 0x6f, 0xf1, 0x09, 0x27, 0x9d,
  41. 0x98, 0x30, 0xda, 0xc7, 0x27, 0xaf, 0xb9, 0x4a, 0x83,
  42. 0xee, 0x6d, 0x83, 0x60, 0xcb, 0xdf, 0xa2, 0xcc, 0x06,
  43. 0x40,
  44. },
  45. },
  46. {
  47. "pleaseletmein", "SodiumChloride",
  48. 16384, 8, 1,
  49. []byte{
  50. 0x70, 0x23, 0xbd, 0xcb, 0x3a, 0xfd, 0x73, 0x48, 0x46,
  51. 0x1c, 0x06, 0xcd, 0x81, 0xfd, 0x38, 0xeb, 0xfd, 0xa8,
  52. 0xfb, 0xba, 0x90, 0x4f, 0x8e, 0x3e, 0xa9, 0xb5, 0x43,
  53. 0xf6, 0x54, 0x5d, 0xa1, 0xf2, 0xd5, 0x43, 0x29, 0x55,
  54. 0x61, 0x3f, 0x0f, 0xcf, 0x62, 0xd4, 0x97, 0x05, 0x24,
  55. 0x2a, 0x9a, 0xf9, 0xe6, 0x1e, 0x85, 0xdc, 0x0d, 0x65,
  56. 0x1e, 0x40, 0xdf, 0xcf, 0x01, 0x7b, 0x45, 0x57, 0x58,
  57. 0x87,
  58. },
  59. },
  60. /*
  61. // Disabled: needs 1 GiB RAM and takes too long for a simple test.
  62. {
  63. "pleaseletmein", "SodiumChloride",
  64. 1048576, 8, 1,
  65. []byte{
  66. 0x21, 0x01, 0xcb, 0x9b, 0x6a, 0x51, 0x1a, 0xae, 0xad,
  67. 0xdb, 0xbe, 0x09, 0xcf, 0x70, 0xf8, 0x81, 0xec, 0x56,
  68. 0x8d, 0x57, 0x4a, 0x2f, 0xfd, 0x4d, 0xab, 0xe5, 0xee,
  69. 0x98, 0x20, 0xad, 0xaa, 0x47, 0x8e, 0x56, 0xfd, 0x8f,
  70. 0x4b, 0xa5, 0xd0, 0x9f, 0xfa, 0x1c, 0x6d, 0x92, 0x7c,
  71. 0x40, 0xf4, 0xc3, 0x37, 0x30, 0x40, 0x49, 0xe8, 0xa9,
  72. 0x52, 0xfb, 0xcb, 0xf4, 0x5c, 0x6f, 0xa7, 0x7a, 0x41,
  73. 0xa4,
  74. },
  75. },
  76. */
  77. }
  78. var bad = []testVector{
  79. {"p", "s", 0, 1, 1, nil}, // N == 0
  80. {"p", "s", 1, 1, 1, nil}, // N == 1
  81. {"p", "s", 7, 8, 1, nil}, // N is not power of 2
  82. {"p", "s", 16, maxInt / 2, maxInt / 2, nil}, // p * r too large
  83. }
  84. func TestKey(t *testing.T) {
  85. for i, v := range good {
  86. k, err := Key([]byte(v.password), []byte(v.salt), v.N, v.r, v.p, len(v.output))
  87. if err != nil {
  88. t.Errorf("%d: got unexpected error: %s", i, err)
  89. }
  90. if !bytes.Equal(k, v.output) {
  91. t.Errorf("%d: expected %x, got %x", i, v.output, k)
  92. }
  93. }
  94. for i, v := range bad {
  95. _, err := Key([]byte(v.password), []byte(v.salt), v.N, v.r, v.p, 32)
  96. if err == nil {
  97. t.Errorf("%d: expected error, got nil", i)
  98. }
  99. }
  100. }
  101. func BenchmarkKey(b *testing.B) {
  102. for i := 0; i < b.N; i++ {
  103. Key([]byte("password"), []byte("salt"), 16384, 8, 1, 64)
  104. }
  105. }