const crypto/md5.Size

8 uses

	crypto/md5 (current package)
		md5.go#L25: const Size = 16
		md5.go#L119: func (d *digest) Size() int { return Size }
		md5.go#L164: func (d *digest) checkSum() [Size]byte {
		md5.go#L181: 	var digest [Size]byte
		md5.go#L190: func Sum(data []byte) [Size]byte {

	crypto/tls
		key_agreement.go#L117: 	md5sha1 := make([]byte, md5.Size+sha1.Size)
		key_agreement.go#L123: 	copy(md5sha1[md5.Size:], sha1Hash(slices))
		prf.go#L195: 	out := make([]byte, 0, md5.Size+sha1.Size)