-
Notifications
You must be signed in to change notification settings - Fork 6
/
fast-rsa-engine.gemspec
31 lines (25 loc) · 1.25 KB
/
fast-rsa-engine.gemspec
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
#-*- mode: ruby -*-
Gem::Specification.new do |s|
s.name = 'fast-rsa-engine'
s.version = '0.1.0'
s.author = 'Christian Meieier'
s.email = [ '[email protected]' ]
s.platform = 'java'
s.license = 'MIT'
s.summary = %q(replaces the RSA signature and RSA ciphers from jruby-openssl by the must faster implementation of them)
s.homepage = 'https://github.com/lookout/fast-rsa-engine'
s.description = %q(this gem replaces the RSA signature and RSA ciphers from jruby-openssl by the must faster implementation of them. see https://corner.squareup.com/2014/02/faster-rsa-jnagmp.html)
s.files = `git ls-files`.split($/)
BC_VERSION = '1.50'
# needed for runtime
s.requirements << "jar com.squareup.jnagmp:bouncycastle-rsa, 1.0.0"
# needed for compilation
s.requirements << "jar org.bouncycastle:bcpkix-jdk15on, #{BC_VERSION}, :scope => :provided"
s.requirements << "jar org.bouncycastle:bcprov-jdk15on, #{BC_VERSION}, :scope => :provided"
s.requirements << "pom org.jruby:jruby-core, 1.7.21, :scope => :provided"
s.add_runtime_dependency 'jar-dependencies', '~> 0.1'
s.add_development_dependency 'ruby-maven', '~> 3.3'
s.add_development_dependency 'rspec', '~> 3.3'
s.add_development_dependency 'rake', '~> 10.2'
end
# vim: syntax=ruby