在持久性存储中使用SQLCipher数据库

时间:2013-02-27 03:23:38

标签: objective-c xcode sqlcipher

我已经到了可以用SQLCipher创建数据库加密副本的地步,现在我正在尝试将它集成到我的项目中。我尝试在我的app委托中使用以下代码来解密数据库...

   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]) {

我第一次在创建数据库后加载程序时,我会得到一个“正确的密码”日志,但在此之后的任何时候我都会收到“密码错误”,但数据库仍然可用,这让我相信数据库被覆盖的东西。

1 个答案:

答案 0 :(得分:3)

CoreData不能直接与SQLCipher一起使用,因为它直接在设备中使用SQLite。您可以查看使用SQLCipher和自定义NSIncrementalStore的加密核心数据项目(https://github.com/project-imas/encrypted-core-data)以提供类似的功能。