func encoding/hex.EncodeToString

15 uses

	encoding/hex (current package)
		hex.go#L126: func EncodeToString(src []byte) string {

	crypto/x509
		pem_decrypt.go#L228: 			"DEK-Info":  ciph.name + "," + hex.EncodeToString(iv),

	crypto/x509/pkix
		pkix.go#L57: 					s += oidString + "=#" + hex.EncodeToString(derBytes)

	github.com/jackc/pgx/v5
		conn.go#L351: 		psName = "stmt_" + hex.EncodeToString(digest[0:24])

	github.com/jackc/pgx/v5/internal/stmtcache
		stmtcache.go#L15: 	return "stmtcache_" + hex.EncodeToString(digest[0:24])

	github.com/jackc/pgx/v5/pgconn
		pgconn.go#L519: 	return hex.EncodeToString(hash.Sum(nil))

	github.com/jackc/pgx/v5/pgproto3
		backend_key_data.go#L50: 		SecretKey: hex.EncodeToString(src.SecretKey),
		bind.go#L172: 			formattedParameters[i] = map[string]string{"binary": hex.EncodeToString(p)}
		cancel_request.go#L64: 		SecretKey: hex.EncodeToString(src.SecretKey),
		copy_data.go#L39: 		Data: hex.EncodeToString(src.Data),
		data_row.go#L102: 			formattedValues[i] = map[string]string{"binary": hex.EncodeToString(v)}
		function_call_response.go#L67: 		formattedValue = map[string]string{"binary": hex.EncodeToString(src.Result)}

	github.com/jackc/pgx/v5/pgtype
		bytea.go#L130: 	buf = append(buf, hex.EncodeToString(b)...)
		bytea.go#L146: 	buf = append(buf, hex.EncodeToString(b)...)

	github.com/jackc/pgx/v5/tracelog
		tracelog.go#L101: 				a = hex.EncodeToString(v)