Skip to content

Latest commit

 

History

History
33 lines (22 loc) · 1009 Bytes

README.md

File metadata and controls

33 lines (22 loc) · 1009 Bytes

mpags-cipher

A simple command line tool for encrypting/decrypting text using classical ciphers

Source Code Layout

Under this directory, the code and associated files are organised as follows:

MPAGSCipher
├── README.md             This file, describes the project
├── LICENSE               License file, in our case MIT
├── CMakeLists.txt        CMake build script
├── mpags-cipher.cpp      Main program C++ source file
├── MPAGSCipher           Subdirectory for MPAGSCipher library code
|   └── CMakeLists.txt    Build sub-script for the MPAGSCipher library
├── Documentation         Subdirectory for documentation "code"
|   └── CMakeLists.txt    Build sub-script Doxygen HTML docs
|   └── Doxyfile.in       Doxygen configuration template
└── Testing               Subdirectory for code that tests MPAGSCipher
    └── CMakeLists.txt    Build sub-script for testing programs

How to Install

Authors

Documentation