workflow-encryption 0.18.0

A set of tools for rudimentary data encryption.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
mod imports;

pub mod chacha20poly1305;
pub mod error;
pub mod hash;
pub mod result;
pub mod secret;

pub mod prelude {
    pub use crate::chacha20poly1305;
    pub use crate::hash::*;
    pub use crate::secret::Secret;
}