fast-rsa-engine 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +4 -0
- data/.travis.yml +18 -0
- data/Gemfile +4 -0
- data/Gemfile096 +7 -0
- data/Gemfile098 +6 -0
- data/LICENSE +22 -0
- data/README.md +50 -0
- data/Rakefile +28 -0
- data/benchmark/benchmark-with-builtin-rsa.rb +3 -0
- data/benchmark/benchmark-with-fast-rsa.rb +7 -0
- data/benchmark/benchmark.rb +54 -0
- data/benchmark/foo.pem +51 -0
- data/benchmark/foo_cert.pem +29 -0
- data/fast-rsa-engine.gemspec +36 -0
- data/lib/fast-rsa-engine.rb +32 -0
- data/lib/fast-rsa-engine_jars.rb +6 -0
- data/spec/cipher_spec.rb +45 -0
- data/spec/foo.pem +51 -0
- data/spec/foo_cert.pem +29 -0
- data/spec/security_helper_spec.rb +15 -0
- data/spec/setup.rb +15 -0
- data/spec/signature_spec.rb +38 -0
- data/src/main/java/com/github/lookout/fastrsa/FastCipherSpi.java +194 -0
- data/src/main/java/com/github/lookout/fastrsa/FastDigestSignatureSpi.java +133 -0
- data/src/main/java/org/jruby/ext/openssl/SecurityHelper.java +751 -0
- metadata +102 -0
metadata
ADDED
@@ -0,0 +1,102 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: fast-rsa-engine
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.2.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Christian Meier
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2015-08-11 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: rspec
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ~>
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '3.3'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ~>
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '3.3'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ~>
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '10.2'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ~>
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '10.2'
|
41
|
+
description: this gem replaces the RSA signature and RSA ciphers from jruby-openssl
|
42
|
+
by a faster implementation of them. see https://corner.squareup.com/2014/02/faster-rsa-jnagmp.html
|
43
|
+
email:
|
44
|
+
- christian.meier@lookout.com
|
45
|
+
- rtyler.croy@lookout.com
|
46
|
+
executables: []
|
47
|
+
extensions: []
|
48
|
+
extra_rdoc_files: []
|
49
|
+
files:
|
50
|
+
- .gitignore
|
51
|
+
- .travis.yml
|
52
|
+
- Gemfile
|
53
|
+
- Gemfile096
|
54
|
+
- Gemfile096.lock
|
55
|
+
- Gemfile098
|
56
|
+
- Gemfile098.lock
|
57
|
+
- LICENSE
|
58
|
+
- README.md
|
59
|
+
- Rakefile
|
60
|
+
- benchmark/benchmark-with-builtin-rsa.rb
|
61
|
+
- benchmark/benchmark-with-fast-rsa.rb
|
62
|
+
- benchmark/benchmark.rb
|
63
|
+
- benchmark/foo.pem
|
64
|
+
- benchmark/foo_cert.pem
|
65
|
+
- fast-rsa-engine.gemspec
|
66
|
+
- lib/fast-rsa-engine.rb
|
67
|
+
- lib/fast-rsa-engine_jars.rb
|
68
|
+
- spec/cipher_spec.rb
|
69
|
+
- spec/foo.pem
|
70
|
+
- spec/foo_cert.pem
|
71
|
+
- spec/security_helper_spec.rb
|
72
|
+
- spec/setup.rb
|
73
|
+
- spec/signature_spec.rb
|
74
|
+
- src/main/java/com/github/lookout/fastrsa/FastCipherSpi.java
|
75
|
+
- src/main/java/com/github/lookout/fastrsa/FastDigestSignatureSpi.java
|
76
|
+
- src/main/java/org/jruby/ext/openssl/SecurityHelper.java
|
77
|
+
homepage: https://github.com/lookout/fast-rsa-engine
|
78
|
+
licenses:
|
79
|
+
- MIT
|
80
|
+
metadata: {}
|
81
|
+
post_install_message:
|
82
|
+
rdoc_options: []
|
83
|
+
require_paths:
|
84
|
+
- lib
|
85
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - '>='
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '0'
|
90
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
91
|
+
requirements:
|
92
|
+
- - '>='
|
93
|
+
- !ruby/object:Gem::Version
|
94
|
+
version: '0'
|
95
|
+
requirements: []
|
96
|
+
rubyforge_project:
|
97
|
+
rubygems_version: 2.0.14
|
98
|
+
signing_key:
|
99
|
+
specification_version: 4
|
100
|
+
summary: replaces the RSA signature and RSA ciphers from jruby-openssl by a faster
|
101
|
+
implementation of them
|
102
|
+
test_files: []
|