Adding note on draft status in doc comments

This commit is contained in:
Kevin Lewi
2020-06-09 15:13:42 -07:00
parent 88696763cc
commit af22bfa54f
+4 -3
View File
@@ -5,6 +5,9 @@
//! An implementation of the OPAQUE asymmetric password authentication key exchange protocol
//!
//! Note: This implementation is in sync with [draft-krawczyk-cfrg-opaque-05](https://tools.ietf.org/html/draft-krawczyk-cfrg-opaque-05),
//! but this specification is subject to change, until the final version published by the IETF.
//!
//! # Overview
//!
//! OPAQUE is a protocol between a client and a server. They must first agree on a collection of primitives
@@ -20,11 +23,9 @@
//! use opaque_ke::keypair::X25519KeyPair;
//! ```
//!
//! This implementation is in sync with [draft-krawczyk-cfrg-opaque-05](https://tools.ietf.org/html/draft-krawczyk-cfrg-opaque-05),
//! with a concrete instantiation of the authenticated key exchange protocol using 3DH. In the future, we plan to
//! We have included a concrete instantiation of the authenticated key exchange protocol using 3DH. In the future, we plan to
//! add support for other KE protocols as well.
//!
//!
//! ## Setup
//! To setup the protocol, the server begins by generating a static keypair:
//! ```