https://github.com/taeh98/rust-caesar-cipher
A Rust program that encodes and decodes text according to Caesar ciphers via a GUI or CLI. It can automatically decode ciphertext whose shift size is unknown.
https://github.com/taeh98/rust-caesar-cipher
caesar-cipher caesar-shift druid rust rust-lang
Last synced: about 1 year ago
JSON representation
A Rust program that encodes and decodes text according to Caesar ciphers via a GUI or CLI. It can automatically decode ciphertext whose shift size is unknown.
- Host: GitHub
- URL: https://github.com/taeh98/rust-caesar-cipher
- Owner: taeh98
- Created: 2020-07-25T16:23:12.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-09-25T18:17:41.000Z (over 5 years ago)
- Last Synced: 2023-07-24T15:26:01.936Z (over 2 years ago)
- Topics: caesar-cipher, caesar-shift, druid, rust, rust-lang
- Language: Rust
- Homepage:
- Size: 2.18 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Rust-Caesar-Cipher
A Rust program that encodes and decodes text according to Caesar ciphers via a GUI or CLI. It can automatically decode ciphertext whose shift size is unknown.
# Installation and building
It is a prerequisite to have Cargo installed. Install it with rustup (recommended) at https://www.rust-lang.org/tools/install.
With Cargo installed, run "cargo build --release" from the root directory of the repository.
The executable will then be built at target/release/rust_caesar_cipher (from the repository root).