hashes.go 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. // Copyright 2014 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 sha3
  5. // This file provides functions for creating instances of the SHA-3
  6. // and SHAKE hash functions, as well as utility functions for hashing
  7. // bytes.
  8. import (
  9. "hash"
  10. )
  11. // New224 creates a new SHA3-224 hash.
  12. // Its generic security strength is 224 bits against preimage attacks,
  13. // and 112 bits against collision attacks.
  14. func New224() hash.Hash {
  15. if h := new224Asm(); h != nil {
  16. return h
  17. }
  18. return &state{rate: 144, outputLen: 28, dsbyte: 0x06}
  19. }
  20. // New256 creates a new SHA3-256 hash.
  21. // Its generic security strength is 256 bits against preimage attacks,
  22. // and 128 bits against collision attacks.
  23. func New256() hash.Hash {
  24. if h := new256Asm(); h != nil {
  25. return h
  26. }
  27. return &state{rate: 136, outputLen: 32, dsbyte: 0x06}
  28. }
  29. // New384 creates a new SHA3-384 hash.
  30. // Its generic security strength is 384 bits against preimage attacks,
  31. // and 192 bits against collision attacks.
  32. func New384() hash.Hash {
  33. if h := new384Asm(); h != nil {
  34. return h
  35. }
  36. return &state{rate: 104, outputLen: 48, dsbyte: 0x06}
  37. }
  38. // New512 creates a new SHA3-512 hash.
  39. // Its generic security strength is 512 bits against preimage attacks,
  40. // and 256 bits against collision attacks.
  41. func New512() hash.Hash {
  42. if h := new512Asm(); h != nil {
  43. return h
  44. }
  45. return &state{rate: 72, outputLen: 64, dsbyte: 0x06}
  46. }
  47. // Sum224 returns the SHA3-224 digest of the data.
  48. func Sum224(data []byte) (digest [28]byte) {
  49. h := New224()
  50. h.Write(data)
  51. h.Sum(digest[:0])
  52. return
  53. }
  54. // Sum256 returns the SHA3-256 digest of the data.
  55. func Sum256(data []byte) (digest [32]byte) {
  56. h := New256()
  57. h.Write(data)
  58. h.Sum(digest[:0])
  59. return
  60. }
  61. // Sum384 returns the SHA3-384 digest of the data.
  62. func Sum384(data []byte) (digest [48]byte) {
  63. h := New384()
  64. h.Write(data)
  65. h.Sum(digest[:0])
  66. return
  67. }
  68. // Sum512 returns the SHA3-512 digest of the data.
  69. func Sum512(data []byte) (digest [64]byte) {
  70. h := New512()
  71. h.Write(data)
  72. h.Sum(digest[:0])
  73. return
  74. }