diff options
author | Nikos Mavrogiannopoulos <nmav@redhat.com> | 2017-05-26 15:20:38 +0200 |
---|---|---|
committer | Nikos Mavrogiannopoulos <nmav@redhat.com> | 2017-07-17 17:08:01 +0200 |
commit | 650dad4e18f458f60a2cdb43be32356753ed6518 (patch) | |
tree | 308661634af506842f12c709f3ab669d6be1cd7c /lib/crypto-backend.h | |
parent | f7bc8c6eea0f0fc9d02cfd22fe9fea364061ee37 (diff) | |
download | gnutls-650dad4e18f458f60a2cdb43be32356753ed6518.tar.gz |
Added support for EdDSA (Ed25519) curve keys
This adds support for draft-ietf-curdle-pkix-04.
Resolves #25
Signed-off-by: Nikos Mavrogiannopoulos <nmav@redhat.com>
Diffstat (limited to 'lib/crypto-backend.h')
-rw-r--r-- | lib/crypto-backend.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/crypto-backend.h b/lib/crypto-backend.h index 92e3092d8d..07b23cb0f1 100644 --- a/lib/crypto-backend.h +++ b/lib/crypto-backend.h @@ -182,7 +182,7 @@ typedef struct gnutls_x509_spki_st { typedef struct { bigint_t params[GNUTLS_MAX_PK_PARAMS]; unsigned int params_nr; /* the number of parameters */ - unsigned int flags; + unsigned int flags; /* curve */ gnutls_datum_t raw_pub; /* used by x25519 */ gnutls_datum_t raw_priv; |