diff --git a/SourceFiles/Playfair.cpp b/SourceFiles/Playfair.cpp index 098a6de..719c620 100644 --- a/SourceFiles/Playfair.cpp +++ b/SourceFiles/Playfair.cpp @@ -1,7 +1,7 @@ //Ciphers/Headers/Playfair.cpp //Matthew Ellison -// Created: 4-25-18 -//Modified: 5-16-18 +// Created: 04-25-18 +//Modified: 03-07-19 //This file contains the implementation of the Playfair class //It is designed to encrypt and decrypt strings using the Playfair cipher @@ -15,7 +15,7 @@ * @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 char Playfair::REPLACED = 'J'; diff --git a/SourceFiles/Vigenere.cpp b/SourceFiles/Vigenere.cpp index f4e129d..e189c82 100644 --- a/SourceFiles/Vigenere.cpp +++ b/SourceFiles/Vigenere.cpp @@ -1,7 +1,7 @@ //Ciphers/SourceFiles/Vigenere.cpp //Matthew Ellison -// Created: 4-29-18 -//Modified: 5-16-18 +// Created: 04-29-18 +//Modified: 03-07-19 //This file contains the implementation of the Vigenere class #include "../Headers/Vigenere.hpp" @@ -14,7 +14,7 @@ * @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