490 B
490 B
DES Encryption Algorithm
Description
This project implements a simplified version of the DES encryption algorithm, with encryption and decryption using a symmetric key.
How to Build
- Navigate to the
builddirectory. - Run
maketo compile the project.
How to Run
- After building, run the
desexecutable using./des. - You will be prompted to enter a message and a key, both as integers (64-bit).
How to Clean
- Run
make cleanto remove all compiled files.