我已经到了可以使用 SQLCipher 创建数据库的加密副本的地步,现在我正在尝试将它集成到我的项目中。我尝试在我的应用程序委托中使用以下代码来解密数据库...
NSString *databasePath = [[NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) objectAtIndex:0]
stringByAppendingPathComponent: @"encrypted.db"];
if (sqlite3_open([databasePath UTF8String], &db) == SQLITE_OK) {
const char* key = [@"BIGSecret" UTF8String];
sqlite3_key(db, key, strlen(key));
if (sqlite3_exec(db, (const char*) "SELECT count(*) FROM sqlite_master;", NULL, NULL, NULL) == SQLITE_OK) {
// password is correct, or, database has been initialized
NSLog(@"correct password");
} else {
// incorrect password!
NSLog(@"incorrect password");
}
然后稍后在持久存储中,我使用以下代码。
if (__persistentStoreCoordinator != nil) {
return __persistentStoreCoordinator;
}
NSURL *storeURL = [[self applicationDocumentsDirectory] URLByAppendingPathComponent:@"encrypted.db"];
NSError *error = nil;
__persistentStoreCoordinator = [[NSPersistentStoreCoordinator alloc] initWithManagedObjectModel:[self managedObjectModel]];
if (![__persistentStoreCoordinator addPersistentStoreWithType:NSSQLiteStoreType configuration:nil URL:storeURL options:nil error:&error]) {
创建数据库后第一次加载程序时,我会得到一个“密码正确”的日志,但之后的任何时候我都会得到一个“密码错误”,但数据库仍然可用,这让我相信数据库被覆盖什么的。