Skip to content

Latest commit

 

History

History
33 lines (23 loc) · 676 Bytes

README.md

File metadata and controls

33 lines (23 loc) · 676 Bytes

Caesar Cipher implementation in C++

caesar

Compiling and Usage:

Use g++ to compile the code:

$ g++ caesar.cpp -o caesar
Code Function
g++ uses g++ compilator to generate the binary
caesar.cpp the source code
-o flag to output
caesar binary generated

Execute the output file:

$ ./caesar
enter the key: {your key number}
enter the sentence to be encrypted: {string phrase}
{your phrase encrypted}
Made with 💙 by @nallinguilherme