jruby-openssl 0.14.4-java → 0.14.6-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 +14 -0
- data/lib/jopenssl/_compat23.rb +2 -2
- data/lib/jopenssl/load.rb +1 -0
- data/lib/jopenssl/version.rb +1 -1
- data/lib/jopenssl.jar +0 -0
- data/lib/openssl/config.rb +3 -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: b3d8186cdd0768accdbb8d80a5423f4ffac734f6ea1827db4e534461e3914501
|
4
|
+
data.tar.gz: 89aaa16a09a4d3826e4122ec5153c0305dca4ebf089b2d9fc9c1d5b0fdbbf2cc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4ed497a69024e96e903f907d489f4349e0aff3bcf32df8ceb582e6ff89302520c60a6bbad1a8ec291d0ac1c87d182dcb57afbfe698b5627208d22672ec0e97f0
|
7
|
+
data.tar.gz: 84cae68bd5c3d7b0a4099837f422608b479296b365fb0b5d565bad37e0a54ba1b7e579aabc1e9ca9d113f5ff75412fcc30d414806ed1a444967c0d4efc40a6fa
|
data/History.md
CHANGED
@@ -1,3 +1,17 @@
|
|
1
|
+
## 0.14.6
|
2
|
+
|
3
|
+
* [compat] OpenSSL::ConfigError and DEFAULT_CONFIG_FILE (#304)
|
4
|
+
* [fix] `OpenSSL::PKey::DH#set_pqg` regression (#300)
|
5
|
+
* Convert `IOException` to Ruby exception correctly (#242)
|
6
|
+
* [refactor] add exception debugging within SSLSocket#waitSelect
|
7
|
+
* [fix] sync `SSLContext#setup` as it could be shared (#302)
|
8
|
+
* [refactor] organize i-var sets (set `@context` after setup)
|
9
|
+
|
10
|
+
## 0.14.5
|
11
|
+
|
12
|
+
* [fix] `OpenSSL::X509::Request#verify` with DSA public key
|
13
|
+
(this was a regression introduced in JOSSL 0.14.4)
|
14
|
+
|
1
15
|
## 0.14.4
|
2
16
|
|
3
17
|
* [fix] convert `OpenSSL::ASN1::Sequence` to an array on #to_der (#265)
|
data/lib/jopenssl/_compat23.rb
CHANGED
@@ -14,9 +14,9 @@ module OpenSSL
|
|
14
14
|
|
15
15
|
def set_pqg(p, q, g)
|
16
16
|
self.p = p
|
17
|
-
if respond_to?(:q)
|
17
|
+
if respond_to?(:q=)
|
18
18
|
self.q = q
|
19
|
-
else
|
19
|
+
else
|
20
20
|
OpenSSL.warn "JRuby-OpenSSL does not support setting q param on #{inspect}" if q
|
21
21
|
end
|
22
22
|
self.g = g
|
data/lib/jopenssl/load.rb
CHANGED
data/lib/jopenssl/version.rb
CHANGED
data/lib/jopenssl.jar
CHANGED
Binary file
|
data/lib/openssl/config.rb
CHANGED
@@ -14,6 +14,7 @@
|
|
14
14
|
require 'stringio'
|
15
15
|
|
16
16
|
module OpenSSL
|
17
|
+
class ConfigError < OpenSSLError; end
|
17
18
|
##
|
18
19
|
# = OpenSSL::Config
|
19
20
|
#
|
@@ -27,6 +28,8 @@ module OpenSSL
|
|
27
28
|
class Config
|
28
29
|
include Enumerable
|
29
30
|
|
31
|
+
DEFAULT_CONFIG_FILE = nil # JRuby: compatibility (we do not read openssl.cnf)
|
32
|
+
|
30
33
|
class << self
|
31
34
|
|
32
35
|
##
|
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.6</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.6
|
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-05-27 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.
|