-
Notifications
You must be signed in to change notification settings - Fork 8
/
RNPinnedCertValidator.podspec
31 lines (23 loc) · 1.12 KB
/
RNPinnedCertValidator.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
25
26
27
28
29
30
31
Pod::Spec.new do |s|
s.name = "RNPinnedCertValidator"
s.version = "1.0.0"
s.summary = "Simplify validating pinned SSL certificates."
s.description = <<-DESC
RNPinnedCertValidator simplifies validating "pinned" SSL
certificates. A pinned certificate means that your app
only trusts a specific list of certificates rather than
the entire trusted root store for the device. This
improves security by limiting the number of trusted
certificates, and frustrates attacks that modify the
trusted root store.
DESC
s.homepage = "http://github.com/rnapier/RNPinnedCertValidator"
s.license = 'MIT'
s.author = { "Rob Napier" => "[email protected]" }
s.social_media_url = "http://twitter.com/cocoaphony"
s.platform = :ios, '7.0'
s.source = { :git => "https://github.com/rnapier/RNPinnedCertValidator.git", :tag => "1.0.0" }
s.source_files = 'RNPinnedCertValidator'
s.framework = 'Security'
s.requires_arc = true
end