#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; };