jruby-openssl 0.9.6-java → 0.9.7-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/History.md +22 -2
- data/LICENSE.txt +1 -1
- data/README.md +1 -1
- data/lib/jopenssl.jar +0 -0
- data/lib/jopenssl/version.rb +2 -2
- data/lib/org/bouncycastle/bcpkix-jdk15on/{1.49/bcpkix-jdk15on-1.49.jar → 1.50/bcpkix-jdk15on-1.50.jar} +0 -0
- data/lib/org/bouncycastle/bcprov-jdk15on/{1.49/bcprov-jdk15on-1.49.jar → 1.50/bcprov-jdk15on-1.50.jar} +0 -0
- metadata +28 -14
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a10a9709e79d90c74281b533432e33c6c26a2f79
|
4
|
+
data.tar.gz: a3cdde4bde8c2080b352f7359d9a6923e236ccb9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fd1dfecc8fc4ad3a15ee3f8961657d062885eb3ec059a4ce9de1fbb5a926ba74d53718bd84c463916c51262308dfedbba1d12ce61d9fd39bcb03e4433f949e32
|
7
|
+
data.tar.gz: 2a20e1da276557801ee72d5b92355b0f28ec9c4f1bd49d8e0ab2b5da8596ac251ccff0f750e002ac75f56fb497d33947afe0ee1acee1424db873cc5db8a38fa4
|
data/History.md
CHANGED
@@ -1,5 +1,25 @@
|
|
1
|
-
== 0.9.
|
2
|
-
|
1
|
+
== 0.9.7 (pending)
|
2
|
+
|
3
|
+
|
4
|
+
== 0.9.6
|
5
|
+
|
6
|
+
* ClassCastException still happen deep within BC - turn them into SignatureExeption
|
7
|
+
* make sure empty object can be serialize via to_pem
|
8
|
+
* use the classname as message in case the exception has no message (jruby/jruby#2249)
|
9
|
+
* make sure X509Object list is synchronized properly
|
10
|
+
* use JRubyFile to get input-stream to file-resource fixes #11
|
11
|
+
* Cache the discovered classes for digest engines. Fixes #15.
|
12
|
+
* avoid the rest of Ruby.getGlobalRuntime usages - only worked in 1 runtime envs
|
13
|
+
* refactored CRL - using light-weight BC API (avoids deprecated X.509 generator)
|
14
|
+
* implement X509::Certificate#to_text for happiness (the MRI-way - only RSA for now)
|
15
|
+
* allow to "fake" our inspect() support and match MRI's X509::Certificate#inspect
|
16
|
+
* decode BC's ASN1Enumarated into a OpenSSL::ASN1::Enumerated
|
17
|
+
* we can (ASN.1) encode an infinite-length bit-string constructive
|
18
|
+
* turns out all ASN1 primitives in MRI have the infinite_length attribute
|
19
|
+
* support (so-far only dummy) @servername_cb attribute on SSLSocket
|
20
|
+
* handle (CRL) extension's issuerAltName wrapping without an exception
|
21
|
+
* fix SSL (cert) verification - now working on 1.8/1.9 better than before
|
22
|
+
* do not skip first 2 bytes of key identifier hash when encoding to hex!
|
3
23
|
* match X.509 extension short-comings of the Java API in order to align with MRI
|
4
24
|
* improve cert.extension's value - *extendedKeyUsage* was not returned correctly
|
5
25
|
* make sure ASN1::ObjectId.new(...).ln and ASN1::ObjectId.new(...).sn are correct!
|
data/LICENSE.txt
CHANGED
@@ -18,7 +18,7 @@ ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
18
18
|
DEALINGS IN THE SOFTWARE.
|
19
19
|
|
20
20
|
Copyright (C) 2007-2009 Ola Bini <ola.bini@gmail.com>
|
21
|
-
Copyright (C) 2009-
|
21
|
+
Copyright (C) 2009-2015 The JRuby Team
|
22
22
|
|
23
23
|
Alternatively, the contents of this file may be used under the terms of
|
24
24
|
either of the GNU General Public License Version 2 or later (the "GPL"),
|
data/README.md
CHANGED
@@ -45,7 +45,7 @@ NOTE: you can pick any jruby version which is on [central][4] or on [ci.jruby][5
|
|
45
45
|
|
46
46
|
## License
|
47
47
|
|
48
|
-
(c)
|
48
|
+
(c) 2009-2015 JRuby distributed under EPL 1.0/GPL 2.0/LGPL 2.1
|
49
49
|
|
50
50
|
[0]: https://secure.travis-ci.org/jruby/jruby-openssl.png
|
51
51
|
[1]: http://xircles.codehaus.org/projects/jruby/lists
|
data/lib/jopenssl.jar
CHANGED
Binary file
|
data/lib/jopenssl/version.rb
CHANGED
Binary file
|
Binary file
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jruby-openssl
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.9.
|
4
|
+
version: 0.9.7
|
5
5
|
platform: java
|
6
6
|
authors:
|
7
7
|
- Ola Bini
|
@@ -9,36 +9,50 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2015-04-15 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ~>
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: 0.1.0
|
15
20
|
name: jar-dependencies
|
21
|
+
prerelease: false
|
22
|
+
type: :development
|
16
23
|
version_requirements: !ruby/object:Gem::Requirement
|
17
24
|
requirements:
|
18
|
-
- -
|
25
|
+
- - ~>
|
19
26
|
- !ruby/object:Gem::Version
|
20
|
-
version: 0.0
|
27
|
+
version: 0.1.0
|
28
|
+
- !ruby/object:Gem::Dependency
|
21
29
|
requirement: !ruby/object:Gem::Requirement
|
22
30
|
requirements:
|
23
|
-
- -
|
31
|
+
- - ~>
|
24
32
|
- !ruby/object:Gem::Version
|
25
|
-
version:
|
33
|
+
version: 1.1.0
|
34
|
+
name: mocha
|
26
35
|
prerelease: false
|
27
36
|
type: :development
|
28
|
-
- !ruby/object:Gem::Dependency
|
29
|
-
name: mocha
|
30
37
|
version_requirements: !ruby/object:Gem::Requirement
|
31
38
|
requirements:
|
32
39
|
- - ~>
|
33
40
|
- !ruby/object:Gem::Version
|
34
41
|
version: 1.1.0
|
42
|
+
- !ruby/object:Gem::Dependency
|
35
43
|
requirement: !ruby/object:Gem::Requirement
|
36
44
|
requirements:
|
37
|
-
- -
|
45
|
+
- - '>='
|
38
46
|
- !ruby/object:Gem::Version
|
39
|
-
version:
|
47
|
+
version: '0'
|
48
|
+
name: ruby-maven
|
40
49
|
prerelease: false
|
41
50
|
type: :development
|
51
|
+
version_requirements: !ruby/object:Gem::Requirement
|
52
|
+
requirements:
|
53
|
+
- - '>='
|
54
|
+
- !ruby/object:Gem::Version
|
55
|
+
version: '0'
|
42
56
|
description: JRuby-OpenSSL is an add-on gem for JRuby that emulates the Ruby OpenSSL native library.
|
43
57
|
email: ola.bini@gmail.com
|
44
58
|
executables: []
|
@@ -94,8 +108,8 @@ files:
|
|
94
108
|
- lib/openssl/x509-internal.rb
|
95
109
|
- lib/openssl/x509.rb
|
96
110
|
- lib/jopenssl.jar
|
97
|
-
- lib/org/bouncycastle/bcpkix-jdk15on/1.
|
98
|
-
- lib/org/bouncycastle/bcprov-jdk15on/1.
|
111
|
+
- lib/org/bouncycastle/bcpkix-jdk15on/1.50/bcpkix-jdk15on-1.50.jar
|
112
|
+
- lib/org/bouncycastle/bcprov-jdk15on/1.50/bcprov-jdk15on-1.50.jar
|
99
113
|
homepage: https://github.com/jruby/jruby-openssl
|
100
114
|
licenses:
|
101
115
|
- EPL-1.0
|
@@ -117,8 +131,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
117
131
|
- !ruby/object:Gem::Version
|
118
132
|
version: '0'
|
119
133
|
requirements:
|
120
|
-
- jar org.bouncycastle:bcpkix-jdk15on, 1.
|
121
|
-
- jar org.bouncycastle:bcprov-jdk15on, 1.
|
134
|
+
- jar org.bouncycastle:bcpkix-jdk15on, 1.50
|
135
|
+
- jar org.bouncycastle:bcprov-jdk15on, 1.50
|
122
136
|
rubyforge_project:
|
123
137
|
rubygems_version: 2.1.9
|
124
138
|
signing_key:
|