-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsha.go
76 lines (62 loc) · 2.1 KB
/
sha.go
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
package crypto
import (
"crypto/sha256"
"crypto/sha512"
"golang.org/x/crypto/sha3"
)
// Sha3_256 is a SHA-3-256 hasher. Its generic security strength is
// 256 bits against preimage attacks, and 128 bits against collision attacks.
// data is an arbitrary length bytes slice returns 32 bytes ( 256 bits ) hash
// of data.
//
// Implements the crypto.Hasher interface.
type Sha3_256Hasher struct {
}
func (h *Sha3_256Hasher) Hash(input ...[]byte) []byte {
return hashBytes(sha3.New256(), input...)
}
func (h *Sha3_256Hasher) HashHex(input ...[]byte) string {
return hashHex(sha3.New256(), input...)
}
// Sha3_512 is a SHA-3-512 hasher. Its generic security strength is
// 512 bits against preimage attacks, and 256 bits against collision attacks.
// data is an arbitrary length bytes slice returns 64 bytes ( 512 bits ) hash
// of data.
//
// Implements the crypto.Hasher interface.
type Sha3_512Hasher struct {
}
func (h *Sha3_512Hasher) Hash(input ...[]byte) []byte {
return hashBytes(sha3.New512(), input...)
}
func (h *Sha3_512Hasher) HashHex(input ...[]byte) string {
return hashHex(sha3.New512(), input...)
}
// Sha_256 is a SHA-256 hasher. Its generic security strength is
// 256 bits against preimage attacks, and 128 bits against collision attacks.
// data is an arbitrary length bytes slice returns 32 bytes ( 256 bits ) hash
// of data.
//
// Implements the crypto.Hasher interface.
type Sha_256Hasher struct {
}
func (h *Sha_256Hasher) Hash(input ...[]byte) []byte {
return hashBytes(sha256.New(), input...)
}
func (h *Sha_256Hasher) HashHex(input ...[]byte) string {
return hashHex(sha256.New(), input...)
}
// Sha_512 is a SHA-512 hasher. Its generic security strength is
// 512 bits against preimage attacks, and 256 bits against collision attacks.
// data is an arbitrary length bytes slice returns 64 bytes ( 512 bits ) hash
// of data.
//
// Implements the crypto.Hasher interface.
type Sha_512Hasher struct {
}
func (h *Sha_512Hasher) Hash(input ...[]byte) []byte {
return hashBytes(sha512.New(), input...)
}
func (h *Sha_512Hasher) HashHex(input ...[]byte) string {
return hashHex(sha512.New(), input...)
}