| Crates.io | sett |
| lib.rs | sett |
| version | 0.3.0 |
| created_at | 2022-10-03 14:43:34.551037+00 |
| updated_at | 2024-09-17 12:01:13.559409+00 |
| description | Rust port of sett (data compression, encryption and transfer tool). |
| homepage | https://gitlab.com/biomedit/sett-rs |
| repository | https://gitlab.com/biomedit/sett-rs |
| max_upload_size | |
| id | 679027 |
| size | 495,889 |
Main library of sett.
Detailed documentation can be found at https://docs.rs/sett.
By default sett uses openssl as cryptographic backend, however,
it's possible to select a different backend at the compile time: disable
default features (default-features = false) and enable the
crypto-nettle or crypto-cng feature. Available backends:
openssl (default)nettlecng Cryptography API: Next Generation (CNG), Windows-only.Add sett to dependencies in project's Cargo.toml.
[dependencies]
sett = "*"