-
Notifications
You must be signed in to change notification settings - Fork 68
/
Heimdall.podspec
29 lines (21 loc) · 1.15 KB
/
Heimdall.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
Pod::Spec.new do |s|
s.name = "Heimdall"
s.version = "2.0.1"
s.summary = "Heimdall is a wrapper around the Security framework for simple encryption/decryption operations."
s.license = { :type => "MIT", :file => "LICENSE" }
s.description = <<-DESC
Heimdall acts as a gatekeeper between UI and the underlying Security frameworks, offering
tools for encryption/decryption, as well as signing/verifying.
Heimdall supports both using a RSA public-private key-pair, as well as just a public key,
which allows for multiple parties to verify and encrypt messages for sending.
DESC
s.homepage = "https://github.com/henrinormak/Heimdall"
s.source = { :git => "https://github.com/henrinormak/Heimdall.git", :tag => s.version.to_s }
s.author = { "Henri Normak" => "[email protected]" }
s.social_media_url = "http://twitter.com/henrinormak"
s.ios.deployment_target = "8.0"
s.tvos.deployment_target = "9.0"
s.swift_version = "4.2"
s.source_files = "Heimdall/*.{swift,h}"
s.requires_arc = true
end