rops 0.1.7

SOPS-like library in pure Rust
Documentation
mod core;
pub(crate) use core::{RopsMap, RopsTree};

mod key_path;
pub(crate) use key_path::KeyPath;

mod value;
pub(crate) use value::*;

pub mod state;
pub(crate) use state::{DecryptedMap, EncryptedMap, RopsMapEncryptedLeaf, RopsMapState};

mod transforms;
pub(crate) use transforms::ToExternalMap;

mod saved_nonces;
pub(crate) use saved_nonces::SavedRopsMapNonces;

mod decrypt;

mod encrypt;

#[cfg(feature = "test-utils")]
mod mock;