func encoding/hex.Encode

16 uses

	encoding/hex (current package)
		hex.go#L25: func Encode(dst, src []byte) int {
		hex.go#L100: 	Encode(dst, src)
		hex.go#L159: 		encoded := Encode(e.out[:], p[:chunkSize])
		hex.go#L251: 			Encode(h.buf[4:], h.buf[:4])
		hex.go#L259: 		Encode(h.buf[:], data[i:i+1])

	github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream
		header_value.go#L495: 	hex.Encode(scratch[:8], v[0:4])
		header_value.go#L497: 	hex.Encode(scratch[9:13], v[4:6])
		header_value.go#L499: 	hex.Encode(scratch[14:18], v[6:8])
		header_value.go#L501: 	hex.Encode(scratch[19:23], v[8:10])
		header_value.go#L503: 	hex.Encode(scratch[24:], v[10:])

	github.com/aws/aws-sdk-go-v2/service/internal/checksum
		algorithms.go#L137: 	hex.Encode(sumHex, sum)

	github.com/aws/smithy-go/rand
		uuid.go#L76: 	hex.Encode(scratch[:8], u[0:4])
		uuid.go#L78: 	hex.Encode(scratch[9:13], u[4:6])
		uuid.go#L80: 	hex.Encode(scratch[14:18], u[6:8])
		uuid.go#L82: 	hex.Encode(scratch[19:23], u[8:10])
		uuid.go#L84: 	hex.Encode(scratch[24:], u[10:])