mirror of
https://bitbucket.org/Mattrixwv/cipherstream.git
synced 2025-12-06 10:23:57 -05:00
Updated version info
This commit is contained in:
@@ -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';
|
||||
|
||||
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user