Adding serialization and docs (#6)

This commit is contained in:
Kevin Lewi
2021-09-15 17:49:31 -07:00
committed by GitHub
parent 671d1180a2
commit fa2d8ec191
8 changed files with 1120 additions and 907 deletions
+9 -1
View File
@@ -3,7 +3,15 @@
// This source code is licensed under the MIT license found in the
// LICENSE file in the root directory of this source tree.
// #![cfg_attr(not(feature = "bench"), deny(missing_docs))]
//! An implementation of a verifiable oblivious pseudorandom function (VOPRF)
//!
//! Note: This implementation is in sync with
//! [draft-irtf-cfrg-opaque-07](https://www.ietf.org/archive/id/draft-irtf-cfrg-opaque-07.html),
//! but this specification is subject to change, until the final version published by the IETF.
//!
//!
#![cfg_attr(not(feature = "bench"), deny(missing_docs))]
#![deny(unsafe_code)]
#![cfg_attr(not(feature = "std"), no_std)]