round5 0.1.1

Implementation of Round5 post-quantum PKE and KEM algorithms
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#[cfg(not(any(
    feature = "pke",
    feature = "kem"
)))]
compile_error!(
    "You need to specify at least one cryptographic protocol you intend to use. \
    Available options:\n\
    pke, kem\n\
    e.g.\n\
    round5 = { version = \"0.1.1\", features = [\"kem\"] }"
);

fn main() {
}