forked from lachlanbell/SwiftOTP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSwiftOTP.podspec
21 lines (16 loc) · 1.01 KB
/
SwiftOTP.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::Spec.new do |s|
s.name = 'SwiftOTP'
s.version = '0.1.1'
s.summary = 'A Pure Swift library for generating One Time Passwords (OTP)'
s.description = 'SwiftOTP is a pure Swift library for generating One Time Passwords (OTP) commonly used for two factor authentication. SwiftOTP supports both HMAC-Based One Time Passwords (HOTP) and Time Based One Time Passwords (TOTP) defined in RFC 4226 and RFC 6238 respectively.'
s.homepage = 'https://github.com/lachlanbell/SwiftOTP'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'lachlanbell' => '[email protected]' }
s.source = { :git => 'https://github.com/lachlanbell/SwiftOTP.git', :tag => s.version.to_s }
s.ios.deployment_target = '8.0'
# s.osx.deployment_target = '10.11'
# s.watchos.deployment_target = '2.0'
# s.tvos.deployment_target = '9.0'
s.source_files = 'SwiftOTP/**/*'
s.dependency 'CryptoSwift', :git => 'https://github.com/krzyzanowskim/CryptoSwift.git', => :branch 'swift3'
end