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

Read-only notification of GnuTLS library development activities gnutls-devel at lists.gnutls.org
Wed Jun 7 16:23:24 CEST 2023




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

> +			      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)) {

Here, I saw https://gitlab.com/peonix/gnutls/-/blob/hpke-ref/lib/nettle/hpke/hpke-dhkem.c#L68
that its usage is same way as you told earlier (initializing sk from dhkem itself). So, `ecc_scalar_set (sk, z)` this will work fine.

-- 
Reply to this email directly or view it on GitLab: https://gitlab.com/gnutls/gnutls/-/merge_requests/1748#note_1422141005
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/20230607/58caa7c4/attachment-0001.html>


More information about the Gnutls-devel mailing list