| Crates.io | kosalt |
| lib.rs | kosalt |
| version | 3.1.7 |
| created_at | 2023-06-27 20:21:09.440112+00 |
| updated_at | 2023-06-28 22:11:39.243381+00 |
| description | This package allows for quick encoding and decoding text |
| homepage | https://github.com/tired-tux/kos/ |
| repository | https://github.com/tired-tux/kos/ |
| max_upload_size | |
| id | 901632 |
| size | 11,454 |
kos (Key, Offset, and Salt) is a quick encryption protocal that uses math to encrypt and decrypt.
(3.1.3) - minor bug fix
kos 3.0.0+ allows for the user to implement this protocal in their program. using lib is the vanilla experience. using kos includes a basic ui.
Web demo here
use kosalt;
fn main() {
kosalt::gen();
kosalt::encrypt("This is super cool!");
let message = kosalt::decrypt();
println!("{message}");
}