https://github.com/infinitemarcus/caesar-cipher
A simple implementation of Caesar Cipher in C, with a brute force algorithm included
https://github.com/infinitemarcus/caesar-cipher
Last synced: over 1 year ago
JSON representation
A simple implementation of Caesar Cipher in C, with a brute force algorithm included
- Host: GitHub
- URL: https://github.com/infinitemarcus/caesar-cipher
- Owner: InfiniteMarcus
- License: lgpl-3.0
- Created: 2020-04-21T22:41:38.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2021-09-12T01:56:09.000Z (almost 5 years ago)
- Last Synced: 2025-01-20T09:44:44.249Z (over 1 year ago)
- Language: C
- Size: 16.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Caesar-Cipher
## A simple implementation of Caesar Cipher in C, with a brute force algorithm included
These algorithms were created during the **2020 edition of the UFSCar Sorocaba Hackerspace**, to test the
capacity of cryptographic brute force algorithms.
To compile and execute the codes, you can use the following steps:
## Caesar Cipher program:
* Compile:
* `gcc main.c caesarCipher.c -o caesar`
* `make` (if using [Make](https://en.wikipedia.org/wiki/Make_(software)))
* Execute: `./caesar`
## Brute Force program:
* Compile:
* `gcc bruteForce.c caesarCipher.c -o brute`
* `make brute` (if using [Make](https://en.wikipedia.org/wiki/Make_(software)))
* Execute: `./brute`