concordium_base 10.0.0

A library that defines common types and functionality that are needed by Concordium Rust projects.
Documentation
1
2
3
4
5
6
7
//! Implementation of the [Dodis-Yampolskiy](https://eprint.iacr.org/2004/310.pdf) PRF function.
//! This is used when creating credentials to get a random-looking credential
//! registration ID.
mod errors;
mod secret;

pub use secret::*;