rops 0.1.7

SOPS-like library in pure Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
mod core;
pub(crate) use core::Cipher;

#[cfg(feature = "aes-gcm")]
mod aes256_gcm;
#[cfg(feature = "aes-gcm")]
pub use aes256_gcm::AES256GCM;

#[cfg(feature = "test-utils")]
mod stub_cipher;
#[cfg(feature = "test-utils")]
pub(crate) use stub_cipher::StubCipher;