password_manager/include/cryptography.hpp
2024-01-15 16:40:07 +01:00

20 lines
310 B
C++

#ifndef CRYPTOGRAPHY_HPP
#define CRYPTOGRAPHY_HPP
#include <cstdint>
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