0
0
mirror of https://github.com/thegeeklab/wp-gitea-release.git synced 2024-06-02 18:29:43 +02:00

Merge pull request #31 from tinsel-grumble/tinsel-grumble-patch-1

add blake2 support
This commit is contained in:
TP Honey 2022-01-18 11:33:20 +00:00 committed by GitHub
commit 6ae63e4434
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,6 +6,8 @@ import (
"crypto/sha256"
"crypto/sha512"
"fmt"
"golang.org/x/crypto/blake2b"
"golang.org/x/crypto/blake2s"
"hash/adler32"
"hash/crc32"
"io"
@ -53,6 +55,10 @@ func checksum(r io.Reader, method string) (string, error) {
return strconv.FormatUint(uint64(adler32.Checksum(b)), 10), nil
case "crc32":
return strconv.FormatUint(uint64(crc32.ChecksumIEEE(b)), 10), nil
case "blake2b":
return fmt.Sprintf("%x", blake2b.Sum256(b)), nil
case "blake2s":
return fmt.Sprintf("%x", blake2s.Sum256(b)), nil
}
return "", fmt.Errorf("Hashing method %s is not supported", method)