diff --git a/CryptClass/AESCrypt.cpp b/CryptClass/AESCrypt.cpp index 5a1e3eb..4f7309e 100644 --- a/CryptClass/AESCrypt.cpp +++ b/CryptClass/AESCrypt.cpp @@ -21,6 +21,7 @@ AESCrypt::AESCrypt(){ //Destructor AESCrypt::~AESCrypt(){ + } diff --git a/CryptClass/AbstractSKA.hpp b/CryptClass/AbstractSKA.hpp index ca7230b..7622ab4 100644 --- a/CryptClass/AbstractSKA.hpp +++ b/CryptClass/AbstractSKA.hpp @@ -7,29 +7,27 @@ * Specify which method the algorithm must be implement. * */ + #ifndef __AbstractSKA__ #define __AbstractSKA__ + +//----- std ----- #include + /** * @class AbstractSKA AbstractSKA.hpp "/CryptClass/AbstractSKA.hpp" * @brief Class for Symmetric-Key Algorithm (SKA) * @author manzerbredes * - * This class should not be instanciate directly. + * This class should not be instantiate directly. * */ - class AbstractSKA { public: - AbstractSKA(){ - } - ~AbstractSKA(){ - } - /** * @brief Encrypt data. * @@ -42,6 +40,7 @@ class AbstractSKA { */ virtual std::string encrypt(std::string key, std::string data) = 0; + /** * @brief Decrypt data. * diff --git a/CryptClass/HASHCrypt.cpp b/CryptClass/HASHCrypt.cpp index cd0dab6..eed9cb5 100644 --- a/CryptClass/HASHCrypt.cpp +++ b/CryptClass/HASHCrypt.cpp @@ -8,13 +8,12 @@ * */ + //----- class ----- #include "HASHCrypt.hpp" - - //Constructor HASHCrypt::HASHCrypt(){ } @@ -25,6 +24,7 @@ HASHCrypt::~HASHCrypt(){ +//Contruct MD5 over 128 bits and put it into digest void HASHCrypt::getMD5_128(std::string chain, byte* digest, int size){ //Digest size controller @@ -37,6 +37,8 @@ void HASHCrypt::getMD5_128(std::string chain, byte* digest, int size){ } + +//Contruct SHA-256 and put it into digest void HASHCrypt::getSHA_256(std::string chain, byte* digest, int size){ //Digest size controller @@ -50,27 +52,6 @@ void HASHCrypt::getSHA_256(std::string chain, byte* digest, int size){ } -//Check the size of the digest -void HASHCrypt::checkDigestSize(int sizeRequired, int size){ - try{ - if(size !=sizeRequired){ - throw this->getInvalidDigestSizeError(sizeRequired, size); - } - - } - catch(std::string erreur){ - std::cerr << erreur <getInvalidDigestSizeError(sizeRequired, size); + } + + } + catch(std::string erreur){ + std::cerr << erreur <id=this->generateId(); +} + +AbstractIDManager::AbstractIDManager(std::string id){ + this->id=id; +} +AbstractIDManager::~AbstractIDManager(){ + this->id=id; +} + + + +void AbstractIDManager::setId(std::string id){ + this->id = id; +} + +std::string AbstractIDManager::generateId(){ + boost::uuids::uuid uuid = boost::uuids::random_generator()(); + std::stringstream ss; + ss << uuid; + return ss.str(); +} + +std::string AbstractIDManager::getId(){ + return this->id; +} diff --git a/ParserClass/AbstractIDManager.hpp b/ParserClass/AbstractIDManager.hpp new file mode 100644 index 0000000..a18d1b2 --- /dev/null +++ b/ParserClass/AbstractIDManager.hpp @@ -0,0 +1,59 @@ +/** + * @file AbstractIDManager.hpp + * @brief AbstractIDManager class definitions + * @author manzerbredes + * @date 11 Mars 2015 + * + * Contain all definitions of AbstractIDManager class. + * If you want to manage id in class (like container), use + * this class as superclass. + * + */ + +//----- std ----- +#include +#include + + +//----- boost ----- +#include // uuid class +#include // generators +#include // streaming operators etc. + + + + +/** + * @class AbstractIDManager AbstractIDManager.hpp "/CryptClass/AbstractIDManager.hpp" + * @brief Managing ID + * @author manzerbredes + * + * This class should not be instantiate directly. + * + */ + class AbstractIDManager{ + + + public: + //Constructor + AbstractIDManager(); + + //Constructor, init with id + AbstractIDManager(std::string); + + //Destructor + ~AbstractIDManager(); + + + //Getters and setters + std::string getId(); + void setId(std::string id); + + + private: + //Generate and random id + std::string generateId(); + + std::string id; ///< String id attribute + + }; diff --git a/ParserClass/FileManContainer/FileManContainer.cpp b/ParserClass/FileManContainer/FileManContainer.cpp new file mode 100644 index 0000000..7f04be4 --- /dev/null +++ b/ParserClass/FileManContainer/FileManContainer.cpp @@ -0,0 +1,25 @@ +/** + * @file FileManContainer.cpp + * @brief FileManContainer class definitions + * @author manzerbredes + * @date 11 Mars 2015 + * + * Contain all implementation of FileManContainer class. + * + */ + + +#include "FileManContainer.hpp" + +FileManContainer::FileManContainer(){ +} + + + +void FileManContainer::addWebsite(Website website){ + this->websites.push_back(website); +} + +std::vector FileManContainer::getWebsites(){ + return this->websites; +} diff --git a/ParserClass/FileManContainer/FileManContainer.hpp b/ParserClass/FileManContainer/FileManContainer.hpp new file mode 100644 index 0000000..d5be276 --- /dev/null +++ b/ParserClass/FileManContainer/FileManContainer.hpp @@ -0,0 +1,46 @@ +/** + * @file FileManContainer.hpp + * @brief FileManContainer class definitions + * @author manzerbredes + * @date 11 Mars 2015 + * + * Contain all definitions of FileManContainer class. + * + */ + +#ifndef __FileManContainer__ +#define __FileManContainer__ + +//----- std ----- + +#include +#include + +//----- class ----- +#include "Website.hpp" + + +/** + * @class Website Website.hpp "/ParserClass/FileManContainer/Website.hpp" + * @brief Class for manager all FileMan container (websites etc...) + * @author manzerbredes + * + * + * + */ + +class FileManContainer{ + + public: + FileManContainer(); + + void addWebsite(Website website); + std::vector getWebsites(); + + private: + + std::vector websites; +}; + + +#endif diff --git a/ParserClass/FileManContainer/Website.cpp b/ParserClass/FileManContainer/Website.cpp new file mode 100644 index 0000000..d54e28a --- /dev/null +++ b/ParserClass/FileManContainer/Website.cpp @@ -0,0 +1,56 @@ +/** + * @file Website.cpp + * @brief Website class definitions + * @author manzerbredes + * @date 11 Mars 2015 + * + * Contain all implementations of Website class. + * + */ + + +#include "Website.hpp" + + +Website::Website(){ + +} + + + + + +std::string Website::getTitle(){ + return this->title; +} +std::string Website::getUrl(){ + return this->url; +} +std::string Website::getUsername(){ + return this->username; +} +std::string Website::getPassword(){ + return this->password; +} +std::string Website::getDescription(){ + return this->description; +} + + + + +void Website::setTitle(std::string title){ + this->title = title; +} +void Website::setUrl(std::string url){ + this->url = url; +} +void Website::setUsername(std::string username){ + this->username = username; +} +void Website::setPassword(std::string password){ + this->password = password; +} +void Website::setDescription(std::string description){ + this->description = description; +} diff --git a/ParserClass/FileManContainer/Website.hpp b/ParserClass/FileManContainer/Website.hpp new file mode 100644 index 0000000..c370f3b --- /dev/null +++ b/ParserClass/FileManContainer/Website.hpp @@ -0,0 +1,78 @@ +/** + * @file Website.hpp + * @brief Website class definitions + * @author manzerbredes + * @date 11 Mars 2015 + * + * Contain all definitions of Website class. + * + */ + +#ifndef __WEBSITE__ +#define __WEBSITE__ + +#include + + +/** + * @class FileManIOFile FileManIOFile.hpp "/CryptClass/FileManIOFile.hpp" + * @brief Class for quick open and close encrypted file. + * @author manzerbredes + * + * -----File organisation----- + * + * 16 first bytes : md5 of decrypted file + * rest of the file : data encrypted (ASE for now) + * + */ + +#include +#include "AbstractIDManager.hpp" + +/** + * @class Website Website.hpp "/ParserClass/FileManContainer/Website.hpp" + * @brief Class for quick open and close encrypted file. + * @author manzerbredes + * + * Container for website data. + * + */ +class Website : public AbstractIDManager { + + + public: + + Website(); + + /** + * @brief Containner getters. + */ + + std::string getTitle(); + std::string getUrl(); + std::string getUsername(); + std::string getPassword(); + std::string getDescription(); + + + /** + * @brief Containner setters. + */ + void setTitle(std::string title); + void setUrl(std::string url); + void setUsername(std::string username); + void setPassword(std::string password); + void setDescription(std::string description); + + + private: + + std::string title; ///< Title of the website + std::string url; ///< Url of the website + std::string username; ///< username of the account + std::string password; ///< password of the account + std::string description; ///< Description of the website +}; + + +#endif diff --git a/ParserClass/FileManParser.cpp b/ParserClass/FileManParser.cpp new file mode 100644 index 0000000..66e3c52 --- /dev/null +++ b/ParserClass/FileManParser.cpp @@ -0,0 +1,133 @@ +/** + * @file FileManParser.cpp + * @brief FileManParser class definitions + * @author manzerbredes + * @date 11 Mars 2015 + * + * Contain all implementations of FileManParser class. + * + */ + + +#include "FileManParser.hpp" + + +FileManParser::FileManParser(std::string data){ + this->data=data; + + try { + xercesc::XMLPlatformUtils::Initialize(); + } + catch (const xercesc::XMLException& toCatch) { + // Do your failure processing here + + } + + + xercesc::XercesDOMParser *parser = new xercesc::XercesDOMParser(); + xercesc::MemBufInputSource myxml_buf((const XMLByte*)this->data.c_str(), this->data.size(), "dummy",false); + + parser->parse("Doxygen/doc.xml"); + + + this->document=parser->getDocument(); + this->root=this->document->getDocumentElement(); + + this->initWebsites(); + + + +} + + + +FileManContainer FileManParser::getContainer(){ + return this->container; +} + + +std::string FileManParser::getData(){ return this->data;}; + + + +void FileManParser::initWebsites(){ + + //Get websites élément + xercesc::DOMElement* websitesElement=this->getChildByTagName(this->root, "websites"); + + //Make list of website + xercesc::DOMNodeList* websiteList=websitesElement->getChildNodes(); + XMLSize_t websiteCount = websiteList->getLength(); + + + //Read the list of website + for(int i=0;iitem(i); + std::string TagName=xercesc::XMLString::transcode(current->getNodeName()); + + if( current->getNodeType() == xercesc::DOMNode::ELEMENT_NODE ) { + Website newWebsite; + + //Get id + XMLCh* idXMLCh=(XMLCh*)((xercesc::DOMElement*)current)->getAttribute((XMLCh*) xercesc::XMLString::transcode("id")); + //Convert id to string from XMLCh + std::string id=xercesc::XMLString::transcode(idXMLCh); + + //Assign id + newWebsite.setId(id); + + //Assign title + newWebsite.setTitle(\ + this->getContentOfChild(dynamic_cast< xercesc::DOMElement* >( current ),"title")); + + //Assign url + newWebsite.setUrl(\ + this->getContentOfChild(dynamic_cast< xercesc::DOMElement* >( current ),"url")); + + //Assign username + newWebsite.setUsername(\ + this->getContentOfChild(dynamic_cast< xercesc::DOMElement* >( current ),"username")); + + //Assign password + newWebsite.setPassword(\ + this->getContentOfChild(dynamic_cast< xercesc::DOMElement* >( current ),"password")); + + //Assign description + newWebsite.setDescription(\ + this->getContentOfChild(dynamic_cast< xercesc::DOMElement* >( current ),"description")); + + //Add website to container + this->container.addWebsite(newWebsite); + + } + } +} + + +xercesc::DOMElement* FileManParser::getChildByTagName(xercesc::DOMElement* node, std::string TagName){ + xercesc::DOMNodeList* nodeList=node->getChildNodes(); + XMLSize_t nodeCount = nodeList->getLength(); + xercesc::DOMElement* returnElement=NULL; + + for(int i=0;iitem(i); + std::string currentTagName=xercesc::XMLString::transcode(current->getNodeName()); + + if( current->getNodeType() == xercesc::DOMNode::ELEMENT_NODE ) { + if(currentTagName.compare(TagName)==0){ + returnElement=dynamic_cast< xercesc::DOMElement* >( current ); + break; + } + } + } + + return returnElement; +} + + +std::string FileManParser::getContentOfChild(xercesc::DOMElement* node,std::string TagName){ + xercesc::DOMElement* child=this->getChildByTagName(node,TagName); + return xercesc::XMLString::transcode(child->getTextContent()); +} diff --git a/ParserClass/FileManParser.hpp b/ParserClass/FileManParser.hpp new file mode 100644 index 0000000..6a977db --- /dev/null +++ b/ParserClass/FileManParser.hpp @@ -0,0 +1,58 @@ +/** + * @file FileManParser.hpp + * @brief FileManParser class definitions + * @author manzerbredes + * @date 11 Mars 2015 + * + * Contain all definitions of FileManParser class. + * + */ + +//----- std ----- +#include +#include +#include + +//----- class ----- +#include "Website.hpp" +#include "FileManContainer.hpp" + +//----- xerces ----- +#include +#include +#include +#include +#include +#include +#include + + + +class FileManParser{ + + + public: + FileManParser(std::string data); + + + + FileManContainer getContainer(); + + void initWebsites(); + + std::string getData(); + + xercesc::DOMElement* getChildByTagName(xercesc::DOMElement* node, std::string TagName); + std::string getContentOfChild(xercesc::DOMElement* node,std::string TagName); + + private: + + xercesc::DOMDocument* document; ///< contain the document + + xercesc::DOMElement* root; + + FileManContainer container; ///< contain all container + + std::string data; ///< contain data to parse + +}; diff --git a/main.cpp b/main.cpp index af9f31b..bae168f 100644 --- a/main.cpp +++ b/main.cpp @@ -15,13 +15,13 @@ #include #include +#include //----- class ----- -#include "AESCrypt.hpp" -#include "HASHCrypt.hpp" #include "FileManIOFile.hpp" - - +#include "FileManParser.hpp" +#include "FileManContainer.hpp" +#include "Website.hpp" /** * @fn int main(int argc, char *argv[]) @@ -33,7 +33,30 @@ */ int main(int argc, char *argv[]){ - std::string chaine="It's work !"; + + + + std::string xml="\n\ + \n\ + \n\ + \n\ + \n\ + \n\ + "; + + + FileManParser parser(xml); + + + + //std::cout << std::endl << parser.getData() << std::endl; + + + + + + + /*std::string chaine="It's work !"; std::string key="loic"; AESCrypt aes; @@ -52,7 +75,11 @@ int main(int argc, char *argv[]){ fichier.read(key); if(fichier.isReadable()) - std::cout << fichier.getData(); + std::cout << fichier.getData();*/ + + FileManContainer container= parser.getContainer(); + std::vector websites= container.getWebsites(); + std::cout << websites.at(0).getId(); return 0;