An open API service indexing awesome lists of open source software.

https://github.com/synacktraa/rot

Rot Cipher Encryption and Decryption Algorithm.
https://github.com/synacktraa/rot

c-language caesar-cipher cli-tool cryptology decryption encryption rot-cipher

Last synced: 11 months ago
JSON representation

Rot Cipher Encryption and Decryption Algorithm.

Awesome Lists containing this project

README

          

# Rot Cipher

>Rot Ciphers' encryption and decryption algorithm written in C.

Compile:

```powershell
gcc rotcipher.c -o rot
```
---
Ask For Help:
```powershell
rot -h
```
Output:
```
Usage: rot -s -m (enc|dec) -r

Options:-
-s set data string
-m set mode to encrypt or decrypt the message
-r set rotate value [-1 to print all possibilities]
```
---
## Encryption:
```powershell
rot -s "Hack Teh World!" -m enc -r 10
```
Output:
```
Rkmu Dor Gybvn!
```
---
## Decryption:
```powershell
rot -s "Rkmu Dor Gybvn!" -m dec -r 10
```
Output:
```
Hack Teh World!
```
___