hash哈希算法,MD5、SHA1、SHA512、SHA256

祁嘉木
2023-12-01

hash算法可以将任意长度的二进制值(明文)映射为较短的固定长度的二进制值(hash值),hash值又称为数字指纹、数字摘要

func StudyHASH(str string, hashType string) string {
	var hash hash.Hash
	switch hashType {
	case "md5":
		hash = md5.New()
	case "sha256":
		hash = sha256.New()
	case "sha512":
		sha512.New()
	case "sha1":
		sha1.New()
	}
	hash.Write([]byte(str))
	hashByte := hash.Sum([]byte(nil))
	hashStr := hex.EncodeToString(hashByte)
	return hashStr
}

源码地址

 类似资料: