go-graphite / go-carbon

Audit required: MD5 cipher algorithm is cryptographically broken GO-S1023
Security
Major
1 occurrence in this check
MD5 hash algorithm is insecure: md5.Sum([]byte(name))
1837	// file extension.
1838	if len(name) >= 250 {
1839		// skipcq: GSC-G401
1840		name = fmt.Sprintf("%s-%x", name[:(250-md5.Size*2-1)], md5.Sum([]byte(name)))1841	}
1842
1843	// Note: Timestamp for each points.Points are set by collector send logics