diff options
author | Simo Sorce <simo@redhat.com> | 2019-05-20 17:13:12 -0400 |
---|---|---|
committer | Nikos Mavrogiannopoulos <nmav@redhat.com> | 2019-05-23 11:35:12 +0200 |
commit | 30cd55456b574b2eadd0bea93ca12492441e0d5d (patch) | |
tree | 349453667651a2f51fa0f7dc4cda4dbe1328fb28 /lib/gnutls_int.h | |
parent | 12d98928e776ddc09f78d3e2c5b615872576c720 (diff) | |
download | gnutls-30cd55456b574b2eadd0bea93ca12492441e0d5d.tar.gz |
Always pass in and check Q in TLS 1.3
In FIPS mode do an extra check that we did have Q, but it is always
passed into the tls13 derive function from the callers.
Signed-off-by: Simo Sorce <simo@redhat.com>
Diffstat (limited to 'lib/gnutls_int.h')
-rw-r--r-- | lib/gnutls_int.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/gnutls_int.h b/lib/gnutls_int.h index 177a8be018..da0a92ebcb 100644 --- a/lib/gnutls_int.h +++ b/lib/gnutls_int.h @@ -664,6 +664,7 @@ typedef struct gnutls_group_entry_st { const char *name; gnutls_group_t id; const gnutls_datum_t *prime; + const gnutls_datum_t *q; const gnutls_datum_t *generator; const unsigned *q_bits; gnutls_ecc_curve_t curve; |