-
Notifications
You must be signed in to change notification settings - Fork 13
/
SecureFoundation.podspec
24 lines (21 loc) · 1.06 KB
/
SecureFoundation.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
Pod::Spec.new do |s|
s.name = 'SecureFoundation'
s.version = '1.0'
s.license = 'Apache License 2.0'
s.summary = 'Secure components enabling application authentication, secure file storage, app level file-based keychain, and shredding for files on disk'
s.description = %[
The "iMAS Secure Foundation" project is designed to provide advanced application-level security based on simple encryption mechanisms. It contains four components: a suite of cipher utilities, a collection of functions to assist with encryption through an application key, a file-based keychain replacement, and the ability to shred files on disk.
]
s.homepage = 'https://github.com/project-imas/securefoundation'
s.authors = {
'MITRE' => '[email protected]'
}
s.source = {
:git => 'https://github.com/project-imas/securefoundation.git',
:tag => s.version.to_s
}
s.source_files = 'SecureFoundation/**/*.{h,m}'
s.framework = 'Security'
s.platform = :ios
s.requires_arc = true
end