rops 0.1.7

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

mod mac_only_encrypted;
pub(crate) use mac_only_encrypted::MacOnlyEncryptedConfig;

mod encrypted_mac;
pub(crate) use encrypted_mac::EncryptedMac;

mod saved_mac_nonce;
pub(crate) use saved_mac_nonce::SavedMacNonce;

#[cfg(test)]
mod tests;