#ifndef CRYPTOGRAPHY_HPP #define CRYPTOGRAPHY_HPP #include class Buffer; class Cryptography { public: Cryptography(std::string password); ~Cryptography(); bool encrypt(Buffer *plain, Buffer *encrypted); bool decrypt(Buffer *encrypted, Buffer *decrypted); private: std::string key; }; #endif