golang哈希加密加盐 func HashSalt(str,salt string)string{ //md5加密 m := md5.New() io.WriteString(m,str) //加盐 io.