example_rust_publish 0.1.0

This is a PQC (Post-Quantum Cryptography) library written in Rust. This library provides a set of encryption algorithms and digital signature algorithms for secure communication and data protection in the age of future quantum computers.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
    pub fn pqc_add_one(){
        println!("Hello, world pqc add one!");
    }

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn it_works() {
        pqc_add_one();
    }
}