jruby-openssl 0.14.3-java → 0.14.5-java
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/History.md +36 -7
- data/LICENSE.txt +1 -1
- data/README.md +17 -18
- data/lib/jopenssl/version.rb +1 -1
- data/lib/jopenssl.jar +0 -0
- data/pom.xml +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 202effc76004a34b2449f3c65b14adc63948ce6fbb6142592ff6880d1500ddd5
|
4
|
+
data.tar.gz: 40c061d56aa080973eae40c9d87d201a34b620897d73b2fb27cd09b88bfa8b72
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a6a5ff0b4febbcaf122a482576a7127edfdba19d5bffd1e5837ba4911446e9a99c8fa108129079c4ef09a73a24c220f2631378ab9587f2e20d8732f810156e1f
|
7
|
+
data.tar.gz: 2d4ac324ebbfda377ed54dd5170e0724fb538442aea26334e1817680f8994cd2741d0bed15ab281007b1a2a3f4bff8809f699c45fd84c49ba5991aa06905192d
|
data/History.md
CHANGED
@@ -1,18 +1,47 @@
|
|
1
|
+
## 0.14.5
|
2
|
+
|
3
|
+
* [fix] OpenSSL::X509::Request#verify with DSA public key
|
4
|
+
(this was a regression introduced in JOSSL 0.14.4)
|
5
|
+
|
6
|
+
## 0.14.4
|
7
|
+
|
8
|
+
* [fix] convert `OpenSSL::ASN1::Sequence` to an array on #to_der (#265)
|
9
|
+
* [feat] implement `PKey::DH.generate` and (dummy) `q` reader (#254)
|
10
|
+
* [fix] raise `TypeError` when arg isn't a `Group`
|
11
|
+
* [refactor] make sure `ASN1Error` has native cause
|
12
|
+
* [fix] stop assuming (JDK) EC key identifier
|
13
|
+
"EC" with Sun provider but "ECDSA" with BC
|
14
|
+
* [fix] do not check empty string as curve name
|
15
|
+
* [fix] make sure `PKeyEC#group.curve_name` is always set
|
16
|
+
* [refactor] `PKey.read` to use BC fully when reading public keys
|
17
|
+
* [fix] `OpenSSL::X509::CRL#sign` to accept string digest
|
18
|
+
* [fix] `OpenSSL::X509::Request#version` default is -1
|
19
|
+
* [fix] resolving EC key from `X509::Request.new(pem)`
|
20
|
+
* [feat] implement `OpenSSL::X509::Request#signature_algorithm`
|
21
|
+
* [fix] work-around CSR failing with EC key (#294)
|
22
|
+
* [feat] implement `OpenSSL::PKey::EC#to_text` (#280)
|
23
|
+
* [feat] partial support for `PKey::EC::Point#to_octet_string(form)`
|
24
|
+
* [feat] implement `OpenSSL::PKCS7::SignerInfo#signed_time` (#269)
|
25
|
+
* [feat] implement #oid method for `PKey` classes (#281)
|
26
|
+
* [fix] raise `PKeyError` from `PKey.read` when no key (#285)
|
27
|
+
* [fix] restore PKCS#8 EC key handling (see #292)
|
28
|
+
* [fix] revert `readPrivateKey` so public key is not lost (#292)
|
29
|
+
|
1
30
|
## 0.14.3
|
2
31
|
|
3
|
-
* [fix] SSLSocket#alpn_protocol to be nil when not used (#287)
|
32
|
+
* [fix] `SSLSocket#alpn_protocol` to be nil when not used (#287)
|
4
33
|
* [feat] try resolving curve-name from EC public key
|
5
|
-
* [feat] implement missing PKey::EC#dsa_verify_asn1 (#241)
|
6
|
-
* [feat] implement support for PKey::EC.generate (#255)
|
7
|
-
* [refactor] make sure curveName is set when using PKey.read (#289)
|
8
|
-
* [fix] add Cipher#auth_data(arg) override (Rails 7.x compatibility) (#290)
|
9
|
-
* [fix] raise TypeError when arg not of expected type (jruby/jruby#7875)
|
34
|
+
* [feat] implement missing `PKey::EC#dsa_verify_asn1` (#241)
|
35
|
+
* [feat] implement support for `PKey::EC.generate` (#255)
|
36
|
+
* [refactor] make sure curveName is set when using `PKey.read` (#289)
|
37
|
+
* [fix] add `Cipher#auth_data(arg)` override (Rails 7.x compatibility) (#290)
|
38
|
+
* [fix] raise `TypeError` when arg not of expected type (jruby/jruby#7875)
|
10
39
|
|
11
40
|
## 0.14.2
|
12
41
|
|
13
42
|
* [deps] upgrade BC to latest 1.74
|
14
43
|
* [fix] for CRL verify when signed with EC key (#276)
|
15
|
-
* [fix] OpenSSL::X509::Certificate#public_key raises for EC keys (#273)
|
44
|
+
* [fix] `OpenSSL::X509::Certificate#public_key` raises for EC keys (#273)
|
16
45
|
|
17
46
|
## 0.14.1
|
18
47
|
|
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-2024 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
@@ -1,9 +1,9 @@
|
|
1
1
|
# JRuby-OpenSSL
|
2
2
|
|
3
3
|
[JRuby-OpenSSL](https://github.com/jruby/jruby-openssl) is an add-on gem for
|
4
|
-
[JRuby](
|
4
|
+
[JRuby](https://www.jruby.org/) that emulates the Ruby OpenSSL native library.
|
5
5
|
|
6
|
-
Under the hood uses the [Bouncy Castle Crypto APIs](
|
6
|
+
Under the hood uses the [Bouncy Castle Crypto APIs](https://www.bouncycastle.org/java.html).
|
7
7
|
|
8
8
|
Each jruby-openssl gem release includes a certain version, usually the latest available,
|
9
9
|
of the library (namely BC Provider and PKIX/CMS/EAC/PKCS/OCSP/TSP/OPENSSL jars).
|
@@ -13,29 +13,28 @@ the JRuby [mailing list][1] or the [bug tracker][2].
|
|
13
13
|
|
14
14
|
## Compatibility
|
15
15
|
|
16
|
-
|
17
16
|
| JRuby-OpenSSL | JRuby compat | JVM compat | supported BC |
|
18
|
-
| -------------
|
19
|
-
| 0.9.6 | 1.6.8-9.0.2 |
|
20
|
-
| 0.9.12 | 1.6.8-9.0.5 |
|
21
|
-
| 0.9.13 | 1.6.8-9.1.2 |
|
22
|
-
| 0.9.14 | 1.6.8-9.1.5 |
|
23
|
-
| 0.9.17 | 1.6.8-9.1.5 |
|
24
|
-
| ~>0.9.18 | 1.6.8-9.1.x |
|
17
|
+
| ------------- |:------------:|-----------:|-------------:|
|
18
|
+
| 0.9.6 | 1.6.8-9.0.2 | Java 6-8 | 1.47-1.50 |
|
19
|
+
| 0.9.12 | 1.6.8-9.0.5 | Java 6-8 | 1.47-1.52 |
|
20
|
+
| 0.9.13 | 1.6.8-9.1.2 | Java 6-8 | 1.49-1.52 |
|
21
|
+
| 0.9.14 | 1.6.8-9.1.5 | Java 6-8 | 1.49-1.54 |
|
22
|
+
| 0.9.17 | 1.6.8-9.1.5 | Java 6-8 | 1.50-1.54 |
|
23
|
+
| ~>0.9.18 | 1.6.8-9.1.x | Java 6-8 | 1.50-1.55 |
|
25
24
|
| 0.10.0 | 1.7.20-9.2.x | Java 7-10 | 1.55-1.59 |
|
26
25
|
| 0.10.3 | 1.7.20-9.2.x | Java 7-11 | 1.56-1.62 |
|
27
26
|
| ~>0.10.5 | 1.7.20-9.3.x | Java 7-11 | 1.60-1.68 |
|
28
27
|
| ~>0.11.x | 9.0.x-9.3.x | Java 7-11 | 1.62-1.68 |
|
29
28
|
| ~>0.12.x | 9.1.x-9.3.x | Java 8-15 | 1.65-1.68 |
|
30
29
|
| ~>0.13.x | 9.1.x-9.4.x | Java 8-17 | 1.68-1.69 |
|
31
|
-
| ~>0.14.x | 9.1.x-9.4.x | Java 8-
|
30
|
+
| ~>0.14.x | 9.1.x-9.4.x | Java 8-21 | 1.71-1.74 |
|
32
31
|
|
33
32
|
NOTE: backwards JRuby compatibility was not handled for versions <= **0.9.6**
|
34
33
|
|
35
34
|
## Security
|
36
35
|
|
37
|
-
JRuby-OpenSSL is an essential part of [JRuby](
|
38
|
-
|
36
|
+
JRuby-OpenSSL is an essential part of [JRuby](https://www.jruby.org/), please report security vulnerabilities to
|
37
|
+
`security@jruby.org` as detailed on JRuby's [security page](https://www.jruby.org/security) or using [GitHub][0].
|
39
38
|
|
40
39
|
Please note that most OpenSSL vulnerabilities do not effect JRuby since its not using
|
41
40
|
any of OpenSSL's C code, only Ruby parts (*.rb) are the same as in MRI's OpenSSL library.
|
@@ -65,11 +64,11 @@ NOTE: you can pick any jruby version which is on [central][4] or on [ci.jruby][5
|
|
65
64
|
|
66
65
|
## License
|
67
66
|
|
68
|
-
(c) 2009-
|
67
|
+
(c) 2009-2024 JRuby distributed under EPL 1.0/GPL 2.0/LGPL 2.1
|
69
68
|
|
70
|
-
[0]: https://
|
71
|
-
[1]:
|
72
|
-
[2]: https://github.com/jruby/jruby/issues
|
69
|
+
[0]: https://github.com/jruby/jruby-openssl/security
|
70
|
+
[1]: https://github.com/jruby/jruby/wiki/MailingLists
|
71
|
+
[2]: https://github.com/jruby/jruby-openssl/issues/new
|
73
72
|
[3]: https://github.com/jruby/jruby-openssl/tree/master/integration
|
74
73
|
[4]: http://central.maven.org/maven2/org/jruby/
|
75
|
-
[5]:
|
74
|
+
[5]: https://www.jruby.org/nightly
|
data/lib/jopenssl/version.rb
CHANGED
data/lib/jopenssl.jar
CHANGED
Binary file
|
data/pom.xml
CHANGED
@@ -11,7 +11,7 @@ DO NOT MODIFY - GENERATED CODE
|
|
11
11
|
<modelVersion>4.0.0</modelVersion>
|
12
12
|
<groupId>rubygems</groupId>
|
13
13
|
<artifactId>jruby-openssl</artifactId>
|
14
|
-
<version>0.14.
|
14
|
+
<version>0.14.5</version>
|
15
15
|
<packaging>gem</packaging>
|
16
16
|
<name>JRuby OpenSSL</name>
|
17
17
|
<description>JRuby-OpenSSL is an add-on gem for JRuby that emulates the Ruby OpenSSL native library.</description>
|
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.14.
|
4
|
+
version: 0.14.5
|
5
5
|
platform: java
|
6
6
|
authors:
|
7
7
|
- Karol Bucek
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2024-
|
13
|
+
date: 2024-04-20 00:00:00.000000000 Z
|
14
14
|
dependencies: []
|
15
15
|
description: JRuby-OpenSSL is an add-on gem for JRuby that emulates the Ruby OpenSSL
|
16
16
|
native library.
|