We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cecf91c commit fab46c8Copy full SHA for fab46c8
Readme.md
@@ -1,15 +1,9 @@
1
-Chaotic image encryption using the logistic map.
+A simple image encryption and decryption tool.
2
3
-Build with:
4
-```sh
5
-cargo build --release
6
-```
+The code runs at browser side, using WebAssembly.
+The encryption is based on Chaotic Logistic Map.
7
8
-Usage:
9
10
-# encode
11
-./target/release/cenc -i original.png -o encoded.png -s your_secret_key
+A hosted version is available at [here](https://menxli.github.io/chaotic-enc/).
12
13
-# decode
14
-./target/release/cdec -i encoded.png -o recovered.png -s your_secret_key
15
+To build for your own use, you need to install Rust and wasm-pack.
+Then run `make wasm`. The frontend will be built at `app/` directory.
0 commit comments