EternallyAscend / GoToolkits

Potential usage of DES, RC4, MD5 or SHA1 GSC-G401
Security
Major
2 years ago2 years old
Use of weak cryptographic primitive
 5// https://www.jianshu.com/p/5b6f7110eb52
 6
 7func MD5(value []byte) []byte {
 8	hashValue := md5.New() 9	hashValue.Write(value)
10	hashResult := hashValue.Sum(nil)
11	return hashResult