-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathRingSig.podspec
23 lines (20 loc) · 960 Bytes
/
RingSig.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.name = 'RingSig'
s.version = '1.1.0'
s.summary = 'An implementation of a ring signature scheme in Swift.'
s.description = <<-DESC
The library implements a ring signature scheme in Swift. The algorithm is based on "How to leak a secret" (2001) by Rivest et al.
DESC
s.homepage = 'https://github.com/FabioTacke/RingSig'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Fabio Tacke' => '[email protected]' }
s.source = { :git => 'https://github.com/FabioTacke/RingSig.git', :tag => 'v' + String(s.version) }
s.social_media_url = 'https://twitter.com/FabioTacke'
s.source_files = 'Sources/RingSig/*.swift'
s.dependency 'BigInt'
s.dependency 'CryptoSwift'
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.10'
s.tvos.deployment_target = '9.0'
s.watchos.deployment_target = '3.0'
end