blob: 067a0b30530909f67a394abce7a34be15e9cc333 (
plain) (
blame)
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
|
package core
import (
"bytes"
"crypto/sha1"
"fmt"
"io"
"strings"
)
// calculateStringHash calculates the sha1 checksum of a given string a.
func calculateStringHash(a string) (string, error) {
hash := sha1.New()
hash.Write([]byte(a))
hashInBytes := hash.Sum(nil)[:20]
return strings.TrimSpace(fmt.Sprintf("%x", hashInBytes)), nil
}
// CalculateBlockHash calculates the sha1 checksum of a given byte slice b.
func CalculateBlockHash(b []byte) (string, error) {
hash := sha1.New()
if _, err := io.Copy(hash, bytes.NewReader(b)); err != nil {
return "", err
}
hashInBytes := hash.Sum(nil)[:20]
return strings.TrimSpace(fmt.Sprintf("%x", hashInBytes)), nil
}
|