CoreData加密,使用SQLCipher

為{幸葍}努か 提交于 2019-12-05 21:10:08

关键是使用SQLCipher,→GitHub地址

一、添加SQLCipher到项目中

使用CocoaPod:

pod 'EncryptedCoreData', :git => 'https://github.com/project-imas/encrypted-core-data.git'

二、在 AppDelegate.m  添加 

#import "EncryptedStore.h"

三、替换coordinator

NSPersistentStoreCoordinator *coordinator = [EncryptedStore makeStore:[self managedObjectModel] passcode:@"你的密码"];

具体还有几个用法,在GitHub主页可以看到.


Mac如何查看使用SQLCipher加密数据库文件:

还是在GitHub,SqliteDatabaseViewer

加密测试demo下载


易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!