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

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

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`