forked from tunabay/go-bitarray
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bitarray_sha256.go
64 lines (53 loc) · 1.7 KB
/
bitarray_sha256.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
// Copyright (c) 2021 Hirotsuna Mizuno. All rights reserved.
// Use of this source code is governed by the MIT license that can be found in
// the LICENSE file.
package bitarray
import (
_ "crypto/sha256" // block()
"encoding/binary"
_ "unsafe" // linkname
)
// SHA256 returns the SHA-256 checksum of the bit array. It treats the bit array
// as a bit-oriented message to compute the checksum as defined in FIPS 180-4.
func (ba *BitArray) SHA256() (d256 [32]byte) {
return ba.sha256CheckSum(false)
}
// SHA224 returns the SHA-224 checksum of the bit array. It treats the bit array
// as a bit-oriented message to compute the checksum as defined in FIPS 180-4.
func (ba *BitArray) SHA224() (d224 [28]byte) {
d256 := ba.sha256CheckSum(true)
copy(d224[:], d256[:])
return
}
func (ba *BitArray) sha256CheckSum(is224 bool) [32]byte {
nBits := ba.Len()
buf := NewBuffer((nBits + 1 + 64 + 511) &^ 511)
buf.PutBitArrayAt(0, ba)
buf.PutBitAt(nBits, 1)
binary.BigEndian.PutUint64(buf.b[len(buf.b)-8:], uint64(nBits))
d := &sha256Digest{is224: is224}
sha256Reset(d)
sha256Block(d, buf.b)
n := 8
if is224 {
n = 7
}
var d256 [32]byte
for i := 0; i < n; i++ {
binary.BigEndian.PutUint32(d256[i<<2:], d.h[i])
}
return d256
}
// crypto/sha256.digest
// TODO: if possible, use crypto/sha256.digest directly
type sha256Digest struct {
h [8]uint32
x [64]byte //nolint:structcheck,unused // for Reset()
nx int //nolint:structcheck,unused // for Reset()
len uint64 //nolint:structcheck,unused // for Reset()
is224 bool
}
//go:linkname sha256Block crypto/sha256.block
func sha256Block(*sha256Digest, []byte)
//go:linkname sha256Reset crypto/sha256.(*digest).Reset
func sha256Reset(*sha256Digest)