func encoding/hex.EncodeToString

29 uses

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

	cloud.google.com/go/storage
		storage.go#L632: 	hexDigest := hex.EncodeToString(sum[:])
		storage.go#L659: 	signature := hex.EncodeToString(b)

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

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

	github.com/aws/aws-sdk-go/aws/signer/v4
		stream.go#L59: 		hex.EncodeToString(prevSig),
		stream.go#L60: 		hex.EncodeToString(hashSHA256(headers)),
		stream.go#L61: 		hex.EncodeToString(hashSHA256(payload)),
		v4.go#L677: 		hex.EncodeToString(hashSHA256([]byte(ctx.canonicalString))),
		v4.go#L684: 	ctx.signature = hex.EncodeToString(signature)
		v4.go#L709: 			hash = hex.EncodeToString(hashBytes)

	github.com/go-git/go-git/v5/plumbing
		hash.go#L41: 	return hex.EncodeToString(h[:])

	github.com/go-redis/redis/v8
		script.go#L33: 		hash: hex.EncodeToString(h.Sum(nil)),

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

	github.com/jackc/pgproto3/v2
		bind.go#L164: 			formattedParameters[i] = map[string]string{"binary": hex.EncodeToString(p)}
		copy_data.go#L42: 		Data: hex.EncodeToString(src.Data),
		data_row.go#L104: 			formattedValues[i] = map[string]string{"binary": hex.EncodeToString(v)}
		function_call_response.go#L71: 		formattedValue = map[string]string{"binary": hex.EncodeToString(src.Result)}
		sasl_initial_response.go#L67: 		Data:          hex.EncodeToString(src.Data),
		sasl_response.go#L41: 		Data: hex.EncodeToString(src.Data),

	github.com/jackc/pgtype
		bytea.go#L118: 	buf = append(buf, hex.EncodeToString(src.Bytes)...)

	github.com/jackc/pgx/v4
		logger.go#L85: 				a = hex.EncodeToString(v)

	github.com/jackc/pgx/v4/internal/sanitize
		sanitize.go#L89: 	return `'\x` + hex.EncodeToString(buf) + "'"

	go.opencensus.io/plugin/ochttp/propagation/b3
		b3.go#L113: 	req.Header.Set(TraceIDHeader, hex.EncodeToString(sc.TraceID[:]))
		b3.go#L114: 	req.Header.Set(SpanIDHeader, hex.EncodeToString(sc.SpanID[:]))

	go.opentelemetry.io/otel/api/trace
		span_context.go#L69: 	return hex.EncodeToString(t[:])
		span_context.go#L92: 	return hex.EncodeToString(s[:])

	golang.org/x/crypto/ssh
		keys.go#L1460: 		hexarray[i] = hex.EncodeToString([]byte{c})

	google.golang.org/api/transport/http/internal/propagation
		http.go#L84: 	header := fmt.Sprintf("%s/%d;o=%d", hex.EncodeToString(sc.TraceID[:]), sid, int64(sc.TraceOptions))