toSha1 这个方法在哪里
func toSha1(str string) string { var ( sha = sha1.New() ) return string(sha.Sum([]byte(str))) }