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.
- Host: GitHub
- URL: https://github.com/abstractmachines/cipherdecryptc
- Owner: abstractmachines
- Created: 2016-03-28T00:06:06.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2016-03-31T00:00:03.000Z (about 9 years ago)
- Last Synced: 2025-02-06T02:57:36.891Z (4 months ago)
- Language: C
- Size: 55.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Ciphertext Decryption in C
Amanda Falke 2014OVERVIEW: 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
