1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#![no_std]
#![cfg_attr(all(feature = "alloc", not(feature = "std")), feature(alloc))]
#![deny(missing_docs)]
#![cfg_attr(feature = "cargo-clippy", feature(tool_lints))]
#![cfg_attr(feature = "cargo-clippy", allow(clippy::many_single_char_names))]
#![cfg_attr(feature = "nightly", feature(external_doc))]
//! [`src/dleq_merlin.rs`]: javascript:void(0)
//! [`tests/e2e.rs`]: javascript:void(0)
//! [a more detailed writeup is also available]: #cryptographic-protocol
//! [`T`]: struct.TokenPreimage.html#method.T
//! [`TokenPreimage`]: voprf/struct.TokenPreimage.html
//! [`Token`]: voprf/struct.Token.html
//! [`BlindedToken`]: voprf/struct.BlindedToken.html
//! [`PublicKey`]: voprf/struct.PublicKey.html
//! [`SigningKey`]: voprf/struct.SigningKey.html
//! [`SignedToken`]: voprf/struct.SignedToken.html
//! [`UnblindedToken`]: voprf/struct.UnblindedToken.html
//! [`VerificationKey`]: voprf/struct.VerificationKey.html
//! [`VerificationSignature`]: voprf/struct.VerificationSignature.html
//! [`DLEQProof`]: voprf/struct.DLEQProof.html
//! [`BatchDLEQProof`]: voprf/struct.BatchDLEQProof.html
#![cfg_attr(feature = "nightly", doc(include = "../README.md"))]
#![cfg_attr(feature = "nightly", doc(include = "../docs/PROTOCOL.md"))]

#[cfg(all(feature = "alloc", not(feature = "std")))]
extern crate alloc;

#[cfg(any(test, feature = "std"))]
#[macro_use]
extern crate std;

extern crate clear_on_drop;
extern crate crypto_mac;
extern crate curve25519_dalek;
extern crate digest;
extern crate hmac;
extern crate rand;
extern crate rand_chacha;

#[cfg(any(test, feature = "base64"))]
extern crate base64;

#[cfg(feature = "merlin")]
extern crate merlin;

#[cfg(feature = "serde")]
extern crate serde;

#[cfg(test)]
extern crate sha2;

#[macro_use]
mod macros;

mod oprf;

#[cfg(not(feature = "merlin"))]
mod dleq;
#[cfg(feature = "merlin")]
mod dleq_merlin;

pub mod errors;
pub mod voprf;