-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVigil.podspec
More file actions
56 lines (45 loc) · 1.96 KB
/
Vigil.podspec
File metadata and controls
56 lines (45 loc) · 1.96 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
Pod::Spec.new do |s|
s.name = 'Vigil'
s.version = '1.0.0'
s.summary = 'Hardware-backed runtime integrity validation for iOS and macOS'
s.description = <<-DESC
Vigil is an open-source framework that provides cryptographically-verified
runtime integrity checking using a two-process architecture. It detects
binary tampering, code injection, and runtime manipulation attacks—all
without requiring an internet connection or external server.
Key features:
- Offline-first design (no server required)
- Two-process architecture (validator runs separately)
- Secure Enclave integration (hardware-backed keys)
- Mutual attestation (both sides verify each other)
- Fail-closed security model
DESC
s.homepage = 'https://github.com/nkhmelni/Vigil'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Vigil Contributors' => '@temprecipient' }
s.source = { :git => 'https://github.com/nkhmelni/Vigil.git', :tag => s.version.to_s }
s.ios.deployment_target = '14.0'
s.osx.deployment_target = '11.0'
s.swift_versions = ['5.0', '5.5', '5.7', '5.9']
s.source_files = 'Sources/Vigil/**/*.{h,m,mm,swift}'
s.public_header_files = 'Sources/Vigil/include/**/*.h'
s.frameworks = 'Security', 'Foundation'
s.ios.frameworks = 'NetworkExtension'
s.pod_target_xcconfig = {
'CLANG_CXX_LANGUAGE_STANDARD' => 'c++14',
'GCC_PREPROCESSOR_DEFINITIONS' => 'VIGIL_COCOAPODS=1'
}
s.subspec 'Core' do |core|
core.source_files = 'Sources/Vigil/**/*.{h,m,mm,swift}'
core.public_header_files = 'Sources/Vigil/include/**/*.h'
end
s.subspec 'Validator' do |validator|
validator.dependency 'Vigil/Core'
validator.source_files = 'Sources/VigilValidator/**/*.{h,m,mm,swift}'
end
s.default_subspecs = 'Core'
s.test_spec 'Tests' do |test|
test.source_files = 'Tests/VigilTests/**/*.{swift,m}'
test.requires_app_host = true
end
end