[gnutls-devel] GnuTLS | Support for ECH (encrypted client hello) (!1748)

Read-only notification of GnuTLS library development activities gnutls-devel at lists.gnutls.org
Tue Jun 6 22:31:10 CEST 2023




Ajit Singh commented on a discussion on lib/nettle/hpke-hkdf.c: https://gitlab.com/gnutls/gnutls/-/merge_requests/1748#note_1420764947

> +			      const struct hpke_dhkem *dhkem,
> +			      struct ecc_scalar *sk, struct ecc_point *pk)
> +{
> +	int r = 1, counter = 0;
> +	uint8_t *dkp_prk = NULL, *bytes = NULL;
> +	mpz_t z, t;
> +
> +	mpz_init(z);
> +
> +	dkp_prk = _nettle_labeled_extract_kem(NULL, "dkp_prk", ikm, ikm_len,
> +					      dhkem);
> +	if (!dkp_prk) {
> +		r = 0;
> +		goto out;
> +	}
> +	while (ecc_scalar_set((struct hpke_dhkem *)dhkem, z)) {

I'm not sure if sk data field values are same as dhkem, so in next change I tried doing this by typecasting `struct dhkem *` to struct `ecc_scalar *`

-- 
Reply to this email directly or view it on GitLab: https://gitlab.com/gnutls/gnutls/-/merge_requests/1748#note_1420764947
You're receiving this email because of your account on gitlab.com.


-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.gnupg.org/pipermail/gnutls-devel/attachments/20230606/a9aa2b35/attachment-0001.html>


More information about the Gnutls-devel mailing list