#pragma once #include #include #include "sqlite3.h" #define ODI __declspec(dllexport) class SqlcipherTool { public: ODI SqlcipherTool(); ODI ~SqlcipherTool(); //¼ÓÃÜ ODI int encryption(std::string src, std::string dst, std::string key, std::string& msg); //½âÃÜ ODI int decrypt(std::string src, std::string dst, std::string key, std::string& msg); private: //Ö´ÐÐÃüÁî int doExec(std::string execode, std::string& msg); sqlite3* db = nullptr; };