jruby-openssl 0.9.6-java → 0.9.7-java

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 0baa29e60eebbb6a6732543f67f646d31c16cf35
4
- data.tar.gz: 989eb1904efe5a189eb963444953638ef074e641
3
+ metadata.gz: a10a9709e79d90c74281b533432e33c6c26a2f79
4
+ data.tar.gz: a3cdde4bde8c2080b352f7359d9a6923e236ccb9
5
5
  SHA512:
6
- metadata.gz: 8f9b6a70fd28c85ad8431741ca002026b36a04cf6041e3c9b3a912a56896c08b5053913995eac75abc0828d7620aa426ab6d6520149a63164cffbc92df7fe5de
7
- data.tar.gz: bbf39a92d4fa4d78fdcefcdf66682809f06c3c7c4e0b00e85b5f38efb737035ec669c0a6b311a08838ab0ad52713ed885c59b516d6a1c0f912a16bb4223400dc
6
+ metadata.gz: fd1dfecc8fc4ad3a15ee3f8961657d062885eb3ec059a4ce9de1fbb5a926ba74d53718bd84c463916c51262308dfedbba1d12ce61d9fd39bcb03e4433f949e32
7
+ data.tar.gz: 2a20e1da276557801ee72d5b92355b0f28ec9c4f1bd49d8e0ab2b5da8596ac251ccff0f750e002ac75f56fb497d33947afe0ee1acee1424db873cc5db8a38fa4
data/History.md CHANGED
@@ -1,5 +1,25 @@
1
- == 0.9.6 (pending)
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-2014 The JRuby Team
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) 2014 JRuby distributed under EPL 1.0/GPL 2.0/LGPL 2.1
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
@@ -1,6 +1,6 @@
1
1
  module Jopenssl
2
2
  module Version
3
- VERSION = '0.9.6'
4
- BOUNCY_CASTLE_VERSION = '1.49'
3
+ VERSION = '0.9.7'
4
+ BOUNCY_CASTLE_VERSION = '1.50'
5
5
  end
6
6
  end
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.6
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: 2014-12-19 00:00:00.000000000 Z
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.9
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: 0.0.9
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: 1.1.0
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.49/bcpkix-jdk15on-1.49.jar
98
- - lib/org/bouncycastle/bcprov-jdk15on/1.49/bcprov-jdk15on-1.49.jar
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.49
121
- - jar org.bouncycastle:bcprov-jdk15on, 1.49
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: