[gnutls-devel] GnuTLS | add support for 0-RTT (!775)
Development of GNU's TLS library
gnutls-devel at lists.gnutls.org
Mon Oct 29 13:51:18 CET 2018
Nikos Mavrogiannopoulos started a new discussion on lib/includes/gnutls/gnutls.h.in:
> +typedef struct gnutls_anti_replay_st *gnutls_anti_replay_t;
> +
> +typedef int (*gnutls_anti_replay_add_func) (void *, const gnutls_datum_t *key);
> +typedef unsigned (*gnutls_anti_replay_check_func) (void *, const gnutls_datum_t *key);
> +typedef void(*gnutls_anti_replay_clear_func) (void *);
> +
> +int gnutls_anti_replay_init(gnutls_anti_replay_t *anti_replay);
> +void gnutls_anti_replay_deinit(gnutls_anti_replay_t anti_replay);
> +void gnutls_anti_replay_set_window(gnutls_anti_replay_t anti_replay,
> + unsigned int window);
> +void gnutls_anti_replay_set_functions(gnutls_anti_replay_t anti_replay,
> + gnutls_anti_replay_add_func add_func,
> + gnutls_anti_replay_check_func check_func,
> + gnutls_anti_replay_clear_func clear_func,
> + void *ptr);
> +int gnutls_anti_replay_enable(gnutls_session_t session,
I think we should have an anti-replay mechanism always on, and refuse to use 0-rtt if that's not possible.
--
Reply to this email directly or view it on GitLab: https://gitlab.com/gnutls/gnutls/merge_requests/775#note_112778598
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/20181029/c84d3903/attachment-0001.html>
More information about the Gnutls-devel
mailing list