fast-rsa-engine 0.3.2-java → 0.4.0-java
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.gitignore +2 -0
- data/.travis.yml +1 -0
- data/README.md +4 -4
- data/fast-rsa-engine.gemspec +6 -6
- metadata +23 -16
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9d473b56d65851622a994f99a52f22d1aa520723
|
|
4
|
+
data.tar.gz: 86167b1ec783585ed64ea8893baab5c0457dd5b0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 80bc332a1605162aabc323ec4d02029782ca9cb42dd18a3d7c8a961ff9274d0a524dcbc1a06856533f5b4f07d204a6f5c3b3812307a4fc604e562572af1cfae6
|
|
7
|
+
data.tar.gz: 0fb744bcbce80c5f7a11a6f8dafa8921a364b20579e9729f4ccd9b9f69af243f572b23fe44d1f96f3c8a8c9f49461049e3dcc63ac4fdb11580060bb0707c254a
|
data/.gitignore
CHANGED
data/.travis.yml
CHANGED
data/README.md
CHANGED
|
@@ -36,14 +36,14 @@ or
|
|
|
36
36
|
|
|
37
37
|
## developement
|
|
38
38
|
|
|
39
|
-
|
|
40
|
-
|
|
39
|
+
Get all the gems and jars in place.
|
|
40
|
+
|
|
41
41
|
gem install jar-dependencies --development
|
|
42
42
|
bundle install
|
|
43
43
|
|
|
44
|
-
|
|
44
|
+
Build jar and run all specs.
|
|
45
45
|
|
|
46
|
-
|
|
46
|
+
bundle exec rake
|
|
47
47
|
|
|
48
48
|
## meta-fu
|
|
49
49
|
|
data/fast-rsa-engine.gemspec
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Gem::Specification.new do |s|
|
|
4
4
|
s.name = 'fast-rsa-engine'
|
|
5
|
-
s.version = '0.
|
|
5
|
+
s.version = '0.4.0'
|
|
6
6
|
s.author = 'Christian Meier'
|
|
7
7
|
s.email = [ 'christian.meier@lookout.com', 'rtyler.croy@lookout.com' ]
|
|
8
8
|
|
|
@@ -17,18 +17,18 @@ Gem::Specification.new do |s|
|
|
|
17
17
|
s.files << 'lib/fast-rsa-engine.jar'
|
|
18
18
|
s.files << 'lib/fast-rsa-engine_jars.rb'
|
|
19
19
|
unless defined?(BC_VERSION)
|
|
20
|
-
BC_VERSION = '1.
|
|
20
|
+
BC_VERSION = '1.56'
|
|
21
21
|
end
|
|
22
22
|
s.platform = 'java'
|
|
23
23
|
# needed for runtime
|
|
24
|
-
s.requirements << "jar com.squareup.jnagmp:bouncycastle-rsa,
|
|
24
|
+
s.requirements << "jar com.squareup.jnagmp:bouncycastle-rsa, 2.0.0"
|
|
25
25
|
# needed for compilation
|
|
26
26
|
s.requirements << "jar org.bouncycastle:bcpkix-jdk15on, #{BC_VERSION}, :scope => :provided"
|
|
27
27
|
s.requirements << "jar org.bouncycastle:bcprov-jdk15on, #{BC_VERSION}, :scope => :provided"
|
|
28
|
-
s.requirements << "pom org.jruby:jruby-core, 1.
|
|
28
|
+
s.requirements << "pom org.jruby:jruby-core, 9.1.8.0, :scope => :provided"
|
|
29
29
|
|
|
30
|
-
s.add_runtime_dependency 'jar-dependencies', '
|
|
31
|
-
s.add_runtime_dependency 'jruby-openssl', '~> 0.9.
|
|
30
|
+
s.add_runtime_dependency 'jar-dependencies', '>= 0.3.10', '< 1.1'
|
|
31
|
+
s.add_runtime_dependency 'jruby-openssl', '~> 0.9.20'
|
|
32
32
|
s.add_development_dependency 'ruby-maven', '~> 3.3'
|
|
33
33
|
end
|
|
34
34
|
|
metadata
CHANGED
|
@@ -1,35 +1,41 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fast-rsa-engine
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.4.0
|
|
5
5
|
platform: java
|
|
6
6
|
authors:
|
|
7
7
|
- Christian Meier
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2017-03-31 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|
|
15
15
|
requirements:
|
|
16
|
-
- - "
|
|
16
|
+
- - ">="
|
|
17
|
+
- !ruby/object:Gem::Version
|
|
18
|
+
version: 0.3.10
|
|
19
|
+
- - "<"
|
|
17
20
|
- !ruby/object:Gem::Version
|
|
18
|
-
version: '
|
|
21
|
+
version: '1.1'
|
|
19
22
|
name: jar-dependencies
|
|
20
23
|
prerelease: false
|
|
21
24
|
type: :runtime
|
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
26
|
requirements:
|
|
24
|
-
- - "
|
|
27
|
+
- - ">="
|
|
28
|
+
- !ruby/object:Gem::Version
|
|
29
|
+
version: 0.3.10
|
|
30
|
+
- - "<"
|
|
25
31
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: '
|
|
32
|
+
version: '1.1'
|
|
27
33
|
- !ruby/object:Gem::Dependency
|
|
28
34
|
requirement: !ruby/object:Gem::Requirement
|
|
29
35
|
requirements:
|
|
30
36
|
- - "~>"
|
|
31
37
|
- !ruby/object:Gem::Version
|
|
32
|
-
version: 0.9.
|
|
38
|
+
version: 0.9.20
|
|
33
39
|
name: jruby-openssl
|
|
34
40
|
prerelease: false
|
|
35
41
|
type: :runtime
|
|
@@ -37,7 +43,7 @@ dependencies:
|
|
|
37
43
|
requirements:
|
|
38
44
|
- - "~>"
|
|
39
45
|
- !ruby/object:Gem::Version
|
|
40
|
-
version: 0.9.
|
|
46
|
+
version: 0.9.20
|
|
41
47
|
- !ruby/object:Gem::Dependency
|
|
42
48
|
requirement: !ruby/object:Gem::Requirement
|
|
43
49
|
requirements:
|
|
@@ -80,7 +86,8 @@ dependencies:
|
|
|
80
86
|
- - "~>"
|
|
81
87
|
- !ruby/object:Gem::Version
|
|
82
88
|
version: '10.2'
|
|
83
|
-
description: this gem replaces the RSA signature and RSA ciphers from jruby-openssl
|
|
89
|
+
description: this gem replaces the RSA signature and RSA ciphers from jruby-openssl
|
|
90
|
+
by a faster implementation of them. see https://corner.squareup.com/2014/02/faster-rsa-jnagmp.html
|
|
84
91
|
email:
|
|
85
92
|
- christian.meier@lookout.com
|
|
86
93
|
- rtyler.croy@lookout.com
|
|
@@ -130,14 +137,14 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
130
137
|
- !ruby/object:Gem::Version
|
|
131
138
|
version: '0'
|
|
132
139
|
requirements:
|
|
133
|
-
- jar com.squareup.jnagmp:bouncycastle-rsa,
|
|
134
|
-
- jar org.bouncycastle:bcpkix-jdk15on, 1.
|
|
135
|
-
- jar org.bouncycastle:bcprov-jdk15on, 1.
|
|
136
|
-
- pom org.jruby:jruby-core, 1.
|
|
140
|
+
- jar com.squareup.jnagmp:bouncycastle-rsa, 2.0.0
|
|
141
|
+
- jar org.bouncycastle:bcpkix-jdk15on, 1.56, :scope => :provided
|
|
142
|
+
- jar org.bouncycastle:bcprov-jdk15on, 1.56, :scope => :provided
|
|
143
|
+
- pom org.jruby:jruby-core, 9.1.8.0, :scope => :provided
|
|
137
144
|
rubyforge_project:
|
|
138
|
-
rubygems_version: 2.
|
|
145
|
+
rubygems_version: 2.6.8
|
|
139
146
|
signing_key:
|
|
140
147
|
specification_version: 4
|
|
141
|
-
summary: replaces the RSA signature and RSA ciphers from jruby-openssl by a faster
|
|
148
|
+
summary: replaces the RSA signature and RSA ciphers from jruby-openssl by a faster
|
|
149
|
+
implementation of them
|
|
142
150
|
test_files: []
|
|
143
|
-
has_rdoc:
|