Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/missn0body/rot
A terminal-based customizable rotation cipher
https://github.com/missn0body/rot
cipher linux linux-app rot13 rot47 rotation-encryption terminal terminal-app terminal-based
Last synced: 3 days ago
JSON representation
A terminal-based customizable rotation cipher
- Host: GitHub
- URL: https://github.com/missn0body/rot
- Owner: missn0body
- License: mit
- Created: 2024-02-29T17:54:18.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-08-12T21:08:13.000Z (3 months ago)
- Last Synced: 2024-10-13T07:43:04.253Z (about 1 month ago)
- Topics: cipher, linux, linux-app, rot13, rot47, rotation-encryption, terminal, terminal-app, terminal-based
- Language: C
- Homepage:
- Size: 38.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# rot
A customizable rotation cipher.
Made by anson in 2024.This program can accept input from a pipe and also by a
file passed in arguments. By default, this program uses
the ROT47 and outputs to standard output, but can be
configured to use different rotation ciphers, such as
Caesar and ROT13, as well as output to a file.The short version of the command-line arguments can be combined together,
and both short and long arguments can be mixed together. If not
accepting input from a pipe or file, this program will not run.Usage and options can be read by invoking `rot --help` at the
command line. This project is licensed under the MIT License, see LICENSE for
related details. Issues, bugs, and other things can be discussed
at my E-Mail,For more information on the ciphers as replicated by these programs,
see the links below:[An interactive demonstration of ROT47 and its implementations](https://rot47.net)
[An interactive demonstration of ROT13](https://rumkin.com/tools/cipher/rot13/)
[Wikipedia entry on the ROT13 cipher](https://en.wikipedia.org/wiki/ROT13)
[Wikipedia entry on the Caesar cipher](https://en.wikipedia.org/wiki/Caesar_cipher)### v.1.0.0 (Initial Release)
(March 2024)
A customizable rotation cipher.### v.1.0.5
(August 2024)
A customizable rotation cipher
* Added a feature to generate tables of incrementing rotations
* Removed ANSI formatted color ouput
* General refactoring of code