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

https://github.com/abstractmachines/cipherdecryptc

ciphertext decryption in C. Vim, linux.
https://github.com/abstractmachines/cipherdecryptc

Last synced: 2 months ago
JSON representation

ciphertext decryption in C. Vim, linux.

Awesome Lists containing this project

README

        

# Ciphertext Decryption in C
Amanda Falke 2014

OVERVIEW: Decrypt Ciphertext to plaintext in C IA32 using bit manipulation,
no string ASCII manipulation.

REQUIREMENTS:

1. Hard code username.

2. Program takes one argument: ciphertext.txt

3. Take in ciphertext.txt through argv, and read file using fread, fseek, ftell, and
related functions.

4. Do not use string libraries, because NULL bytes are part of this process.

5. Decrypt file " username " and change file name to ciphertext.txt

![alt text](https://github.com/abstractmachines/cipherDecryptC/blob/master/cipherdecryptC_screenshot.png)