func encoding/hex.DecodeString

8 uses

	encoding/hex (current package)
		hex.go#L138: func DecodeString(s string) ([]byte, error) {

	crypto/x509
		pem_decrypt.go#L139: 	iv, err := hex.DecodeString(hexIV)

	github.com/jackc/pgx/v5/pgproto3
		backend_key_data.go#L65: 	secretKey, err := hex.DecodeString(msg.SecretKey)
		cancel_request.go#L79: 	secretKey, err := hex.DecodeString(msg.SecretKey)
		pgproto3.go#L97: 		return hex.DecodeString(binary)
		sasl_initial_response.go#L86: 		decoded, err := hex.DecodeString(msg.Data)
		sasl_response.go#L49: 		decoded, err := hex.DecodeString(msg.Data)

	github.com/jackc/pgx/v5/pgtype
		uuid.go#L46: 	buf, err := hex.DecodeString(src)