我正在通过以下代码在 Flutter 中创建数据库,有什么方法可以加密数据库吗?
Flutter 有可用的库吗?
initDb() async {
io.Directory documentsDirectory = await getApplicationDocumentsDirectory();
String path = join(documentsDirectory.path, "test.db");
var theDb = await openDatabase(path, version: 1, onCreate: _onCreate);
return theDb;
}