initial
This commit is contained in:
23
src/oprf/mod.rs
Normal file
23
src/oprf/mod.rs
Normal file
@@ -0,0 +1,23 @@
|
||||
pub mod fast_oprf;
|
||||
pub mod hybrid;
|
||||
pub mod ot;
|
||||
pub mod ring;
|
||||
pub mod ring_lpr;
|
||||
pub mod voprf;
|
||||
|
||||
pub use ring::{
|
||||
RING_N, RingElement, deterministic_round, hash_from_ring, hash_to_ring, ring_multiply,
|
||||
};
|
||||
pub use ring_lpr::{
|
||||
BlindedInput, ClientState, EvaluatedOutput, OPRF_OUTPUT_LEN, RingLprKey, client_blind,
|
||||
client_finalize as ring_lpr_finalize, client_finalize_with_id, prf_evaluate,
|
||||
server_evaluate as ring_lpr_evaluate, server_evaluate_with_id,
|
||||
};
|
||||
|
||||
pub use hybrid::{
|
||||
BlindedElement, EvaluatedElement, OprfClient, OprfServer, client_finalize, server_evaluate,
|
||||
};
|
||||
|
||||
pub use voprf::{
|
||||
CommittedKey, EvaluationProof, KeyCommitment, VerifiableOutput, voprf_evaluate, voprf_verify,
|
||||
};
|
||||
Reference in New Issue
Block a user