const crypto/md5.Size

9 uses

	crypto/md5 (current package)
		md5.go#L25: const Size = 16
		md5.go#L107: func (d *digest) Size() int { return Size }
		md5.go#L152: func (d *digest) checkSum() [Size]byte {
		md5.go#L169: 	var digest [Size]byte
		md5.go#L178: func Sum(data []byte) [Size]byte {

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

	github.com/gotd/td/session/tdesktop
		file.go#L122: func telegramFileHash(data []byte, version [4]byte) (r [md5.Size]byte) {