forked from project-imas/encrypted-core-data
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEncryptedCoreData.podspec
More file actions
30 lines (24 loc) · 1.12 KB
/
EncryptedCoreData.podspec
File metadata and controls
30 lines (24 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
Pod::Spec.new do |s|
s.name = 'EncryptedCoreData'
s.version = '3.0'
s.license = 'Apache-2.0'
s.summary = 'iOS Core Data encrypted SQLite store using SQLCipher'
s.description = %[
Provides a Core Data store that encrypts all data that is persisted. Besides the initial setup, the usage is exactly the same as Core Data and can be used in existing projects that use Core Data.
]
s.homepage = 'https://github.com/project-imas/encrypted-core-data/'
s.authors = {
'MITRE' => 'imas-proj-list@lists.mitre.org'
}
s.source = { :git => 'https://github.com/project-imas/encrypted-core-data.git', :tag => '3.0' }
s.frameworks = ['CoreData', 'Security']
s.requires_arc = true
s.ios.deployment_target = '6.0'
s.osx.deployment_target = '10.9'
s.source_files = 'Incremental Store/**/*.{h,m}'
s.public_header_files = 'Incremental Store/EncryptedStore.h'
s.dependency 'SQLCipher', '~> 3.1.0'
s.xcconfig = {
'OTHER_CFLAGS' => '$(inherited) -DSQLITE_HAS_CODEC -DSQLCIPHER_CRYPTO_CC'
}
end