https://github.com/osennij-morok/korobu
A tool for encryption and decryption written in Rust
https://github.com/osennij-morok/korobu
cryptography egui rust
Last synced: about 1 month ago
JSON representation
A tool for encryption and decryption written in Rust
- Host: GitHub
- URL: https://github.com/osennij-morok/korobu
- Owner: osennij-morok
- License: mit
- Created: 2023-01-14T19:19:21.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2023-07-24T20:24:55.000Z (almost 2 years ago)
- Last Synced: 2025-01-22T18:31:55.689Z (3 months ago)
- Topics: cryptography, egui, rust
- Language: Rust
- Homepage:
- Size: 2.47 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE-MIT
Awesome Lists containing this project
README
# Korobu
A tool for encryption and decryption written in Rust using [egui](https://github.com/emilk/egui) library for GUI. It works both for text and files.


## Features
This program uses state of the art encryption technologies:
* Argon2 as KDF (key derivation function) for brute-force resistance
* XChaCha20-Poly1305 algorithm for AEAD encryption## Requirements
* Rust compiler. You can install it with [rustup](https://rustup.rs).
## Compile
```bash
cargo build --release
```
or
```bash
cargo b -r
```## Run
```bash
cargo run --release
```
or
```bash
cargo r -r
```