sett 0.3.0

Rust port of sett (data compression, encryption and transfer tool).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Library for Secure Encryption and Transfer Tool (sett).
#![warn(missing_docs)]

#[cfg(feature = "auth")]
pub mod auth;
pub mod decrypt;
pub mod destination;
pub mod encrypt;
mod filesystem;
pub mod gnupg;
mod io;
pub mod openpgp;
pub mod package;
pub mod portal;
pub mod remote;
pub mod task;
pub mod utils;
mod zip;