Updated version info

This commit is contained in:
2019-03-07 12:50:56 -05:00
parent b9e3b5c2f5
commit ca22afcdce
2 changed files with 6 additions and 6 deletions

View File

@@ -1,7 +1,7 @@
//Ciphers/Headers/Playfair.cpp //Ciphers/Headers/Playfair.cpp
//Matthew Ellison //Matthew Ellison
// Created: 4-25-18 // Created: 04-25-18
//Modified: 5-16-18 //Modified: 03-07-19
//This file contains the implementation of the Playfair class //This file contains the implementation of the Playfair class
//It is designed to encrypt and decrypt strings using the Playfair cipher //It is designed to encrypt and decrypt strings using the Playfair cipher
@@ -15,7 +15,7 @@
* @brief The current library's version number * @brief The current library's version number
* *
*/ */
const std::string Playfair::version = "1.0.1"; const std::string Playfair::version = "1.1";
///The letter that needs replaced for the cipher to work ///The letter that needs replaced for the cipher to work
char Playfair::REPLACED = 'J'; char Playfair::REPLACED = 'J';

View File

@@ -1,7 +1,7 @@
//Ciphers/SourceFiles/Vigenere.cpp //Ciphers/SourceFiles/Vigenere.cpp
//Matthew Ellison //Matthew Ellison
// Created: 4-29-18 // Created: 04-29-18
//Modified: 5-16-18 //Modified: 03-07-19
//This file contains the implementation of the Vigenere class //This file contains the implementation of the Vigenere class
#include "../Headers/Vigenere.hpp" #include "../Headers/Vigenere.hpp"
@@ -14,7 +14,7 @@
* @brief The current library's version number * @brief The current library's version number
* *
*/ */
const std::string Vigenere::version = "1.0"; const std::string Vigenere::version = "1.1";
/** /**
* @brief Construct a new Vigenere object * @brief Construct a new Vigenere object