2025年 4月5日(土) 05:45 JST

sqlcipher

  • 2014年12月26日(金) 18:00 JST
  • 投稿者:
  • 表示回数 100
sqliteを暗号化する。 clang: error: no such file or directory: ..../sqlite3.c
このエラーがでたら、
sqlcipherに移動して
$ ./configure --enable-tempstore=yes CFLAGS="-DSQLITE_HAS_CODEC" LDFLAGS="-lcrypto"
$ make

process launch failed: timed out waiting for app to launch

// cipher logic
-(void)checkCipherDatabase:(NSString*)filename forPath:(NSString*)dbPath{
// ファイルマネージャを作成
NSFileManager *fileManager = [NSFileManager defaultManager];
// srcをdstに変更する
NSString *src = [dbPath stringByAppendingPathComponent:[NSString stringWithFormat:@"/%@.db",filename]];
NSString *dst = [dbPath stringByAppendingPathComponent:[NSString stringWithFormat:@"/%@tmp.db",filename]];
NSError *error;
// ファイルを移動

FMDatabase *database = [FMDatabase databaseWithPath:[dbPath stringByAppendingString:[NSString stringWithFormat:@"/%@.db",filename]]];
if ([database setKey:@"BIGSecret"] == 0) {
database = nil;
BOOL result = [fileManager moveItemAtPath:src toPath:dst error:&error];

}
}