cloudproof_aesgcm 0.1.5

Cosmian AES256GCM library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use pyo3::{pymodule, types::PyModule, PyResult, Python};

use self::aesgcm::Aes256Gcm;

mod aesgcm;

/// A Python module implemented in Rust.
#[pymodule]
fn cloudproof_aesgcm(_py: Python, m: &PyModule) -> PyResult<()> {
    m.add_class::<Aes256Gcm>()?;

    Ok(())
}