mirror of
https://github.com/packwiz/packwiz.git
synced 2025-10-14 06:54:32 +02:00
Lowercase hashes before comparing them (#10)
This commit is contained in:
@@ -4,13 +4,14 @@ import (
|
||||
"crypto/md5"
|
||||
"crypto/sha256"
|
||||
"crypto/sha512"
|
||||
"strings"
|
||||
"errors"
|
||||
"hash"
|
||||
)
|
||||
|
||||
// GetHashImpl gets an implementation of hash.Hash for the given hash type string
|
||||
func GetHashImpl(hashType string) (hash.Hash, error) {
|
||||
switch hashType {
|
||||
switch strings.ToLower(hashType) {
|
||||
case "sha256":
|
||||
return sha256.New(), nil
|
||||
case "sha512":
|
||||
|
Reference in New Issue
Block a user