1

我已经到了可以使用 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]) {

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

4

1 回答 1

3

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

于 2013-02-27T16:34:26.403 回答