jruby-openssl 0.15.5-java → 0.15.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 +46 -0
- data/Mavenfile +18 -14
- data/README.md +20 -22
- data/lib/jopenssl/version.rb +2 -2
- data/lib/jopenssl.jar +0 -0
- data/lib/openssl/ssl.rb +65 -1
- data/lib/org/bouncycastle/bcpkix-jdk18on/{1.81/bcpkix-jdk18on-1.81.jar → 1.83/bcpkix-jdk18on-1.83.jar} +0 -0
- data/lib/org/bouncycastle/bcprov-jdk18on/{1.81/bcprov-jdk18on-1.81.jar → 1.83/bcprov-jdk18on-1.83.jar} +0 -0
- data/lib/org/bouncycastle/bctls-jdk18on/1.83/bctls-jdk18on-1.83.jar +0 -0
- data/lib/org/bouncycastle/bcutil-jdk18on/{1.81/bcutil-jdk18on-1.81.jar → 1.83/bcutil-jdk18on-1.83.jar} +0 -0
- data/pom.xml +36 -150
- metadata +10 -10
- data/lib/org/bouncycastle/bctls-jdk18on/1.81/bctls-jdk18on-1.81.jar +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d96e832b2b06482ce319fe7b9aae997e9901212a79d15cc7a8321c5ee2f6ab13
|
|
4
|
+
data.tar.gz: 77079f8bbb5cbffc6e60d30b90b723b1193dcae2f20b98718a8cf1fb30cd0f0c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: be0e604a7b78137b2e576f50e9786696af1b892a893a3e33a4ebae2e14f04955a0f31379bf9790df1125e68e6ed68873afd175c4207a03c9233f905503d2b6b6
|
|
7
|
+
data.tar.gz: 886d74cd451c7f65d8a403627db798e5a5c1425da75d4c5fee7e2d708271df2fdd459c8e7b9a06b66951e5f65584774c458b12f1441a5c73804503da67151426
|
data/History.md
CHANGED
|
@@ -1,3 +1,49 @@
|
|
|
1
|
+
## 0.15.7
|
|
2
|
+
|
|
3
|
+
* [fix] handle CRL with optional nextUpdate absent
|
|
4
|
+
* [compat] handle nil dates in `Certificate#sign`
|
|
5
|
+
* [fix] null guard for public key in `PKey#toJava`
|
|
6
|
+
* [fix] missing null guard in `SSLSocket#alpn_protocol`
|
|
7
|
+
* [fix] missing throw in `PKey::EC::Point#add`
|
|
8
|
+
* [fix] `DH#params` returned pub_key and priv_key swapped
|
|
9
|
+
* [fix] compat with JRuby < 9.2.10 after API change (#348)
|
|
10
|
+
* [fix] `Cipher#reset` when key not set (jruby/jruby#5776)
|
|
11
|
+
* [fix] encode Netscape IA5String extensions correctly (#349)
|
|
12
|
+
* [fix] `Store#add_file` raises when no certificate or CRL (#285)
|
|
13
|
+
* [fix] PSS auto salt-length verify failed due leading zeros
|
|
14
|
+
|
|
15
|
+
## 0.15.6
|
|
16
|
+
|
|
17
|
+
Upgrading Bouncy Castle to version 1.83
|
|
18
|
+
Extensive PKey compatibility improvements (EC, RSA, DSA)
|
|
19
|
+
X.509 certificate handling and ASN.1 tagged improvements.
|
|
20
|
+
|
|
21
|
+
* [fix] parse certificate crlDistributionPoints (#205)
|
|
22
|
+
* [fix] `OpenSSL::Cipher#iv_len` for ECB (#169)
|
|
23
|
+
* [compat] implement `OpenSSL::PKey#compare?`
|
|
24
|
+
* [fix] fallback to raw bytes on unknown tag
|
|
25
|
+
* [compat] implement `OpenSSL::KDF.hkdf` (#321)
|
|
26
|
+
* [fix] `OpenSSL::X509::Request#dup` behavior
|
|
27
|
+
* [compat] implement `X509::Certificate#==`
|
|
28
|
+
* [compat] add `OpenSSL::X509::Certificate#tbs_bytes`
|
|
29
|
+
* [compat] implement X.509 extension value_der
|
|
30
|
+
* [fix] handle `PKey::EC.new` with encrypted PEM (#328)
|
|
31
|
+
* [compat] add `PKey::EC#derive` and fix nil group (#257, #326)
|
|
32
|
+
* [compat] support `PKey::EC#sign_raw` and verify_raw
|
|
33
|
+
* [compat] implement `EC::Group#to_der` + related bits
|
|
34
|
+
* [compat] support `PKey::RSA#sign_pss` and `verify_pss` (#288)
|
|
35
|
+
* [compat] support `PKey::RSA#sign_raw` and `verify_raw` (#332)
|
|
36
|
+
* [compat] support `PKey::DSA#sign_raw` and `verify_raw`
|
|
37
|
+
* [compat] improve DSA key parsing and errors
|
|
38
|
+
* [fix] `PKey.read` to parse subject PKI
|
|
39
|
+
* [compat] implement `RSA#private_to_der`/`private_to_pem`
|
|
40
|
+
* [compat] improve ASN.1 tagging behavior
|
|
41
|
+
* [compat] improve `PKey::EC` (raise) behavior
|
|
42
|
+
* [fix] do setup on frozen ssl context (#340)
|
|
43
|
+
* [compat] sync up ssl.rb with upstream
|
|
44
|
+
* [fix] compat with JRuby 10 `initialize_copy` changes
|
|
45
|
+
* [deps] upgrade BC to version 1.83
|
|
46
|
+
|
|
1
47
|
## 0.15.5
|
|
2
48
|
|
|
3
49
|
* [deps] upgrade BC to version 1.81
|
data/Mavenfile
CHANGED
|
@@ -82,14 +82,14 @@ plugin :clean do
|
|
|
82
82
|
'failOnError' => 'false' )
|
|
83
83
|
end
|
|
84
84
|
|
|
85
|
-
jar 'org.jruby:jruby-core', '9.
|
|
85
|
+
jar 'org.jruby:jruby-core', '9.2.0.0', :scope => :provided
|
|
86
86
|
# for invoker generated classes we need to add javax.annotation when on Java > 8
|
|
87
87
|
jar 'javax.annotation:javax.annotation-api', '1.3.1', :scope => :compile
|
|
88
88
|
jar 'junit:junit', '[4.13.1,)', :scope => :test
|
|
89
89
|
|
|
90
90
|
# NOTE: to build on Java 11 - installing gems fails (due old jossl) with:
|
|
91
91
|
# load error: jopenssl/load -- java.lang.StringIndexOutOfBoundsException
|
|
92
|
-
MVN_JRUBY_VERSION =
|
|
92
|
+
MVN_JRUBY_VERSION = '9.2.19.0'
|
|
93
93
|
|
|
94
94
|
jruby_plugin! :gem do
|
|
95
95
|
# when installing dependent gems we want to use the built in openssl not the one from this lib directory
|
|
@@ -102,7 +102,7 @@ plugin :deploy, '2.8.1' do
|
|
|
102
102
|
execute_goals( :deploy, :skip => false )
|
|
103
103
|
end
|
|
104
104
|
|
|
105
|
-
supported_bc_versions = %w{ 1.
|
|
105
|
+
supported_bc_versions = %w{ 1.78 1.79 1.80 1.81 1.82 1.83 }
|
|
106
106
|
|
|
107
107
|
default_bc_version = File.read File.expand_path('lib/jopenssl/version.rb', File.dirname(__FILE__))
|
|
108
108
|
default_bc_version = default_bc_version[/BOUNCY_CASTLE_VERSION\s?=\s?'(.*?)'/, 1]
|
|
@@ -113,6 +113,7 @@ properties( 'jruby.plugins.version' => '3.0.2',
|
|
|
113
113
|
'invoker.test' => '${bc.versions}',
|
|
114
114
|
# allow to skip all tests with -Dmaven.test.skip
|
|
115
115
|
'invoker.skip' => '${maven.test.skip}',
|
|
116
|
+
'skipRunit' => 'true',
|
|
116
117
|
'runit.dir' => 'src/test/ruby/**/test_*.rb',
|
|
117
118
|
'mavengem.wagon.version' => '2.0.2', # for jruby plugin
|
|
118
119
|
'mavengem-wagon.version' => '2.0.2', # for polyglot-ruby
|
|
@@ -146,19 +147,22 @@ invoker_run_options = {
|
|
|
146
147
|
'runit.dir' => '${runit.dir}' }
|
|
147
148
|
}
|
|
148
149
|
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
150
|
+
jruby_versions = []
|
|
151
|
+
jruby_versions += %w{ 9.2.19.0 9.2.20.1 }
|
|
152
|
+
jruby_versions += %w{ 9.3.3.0 9.3.13.0 }
|
|
153
|
+
jruby_versions += %w{ 9.4.8.0 9.4.14.0 }
|
|
154
|
+
jruby_versions += %w{ 10.0.2.0 }
|
|
155
|
+
|
|
156
|
+
jruby_versions.each do |version|
|
|
157
|
+
profile :id => "test-#{version}" do
|
|
158
|
+
plugin :invoker, '1.8' do
|
|
159
|
+
execute_goals( :install, :run, invoker_run_options )
|
|
160
|
+
end
|
|
161
|
+
properties 'jruby.version' => version,
|
|
162
|
+
'jruby.versions' => version,
|
|
163
|
+
'bc.versions' => supported_bc_versions.join(',')
|
|
156
164
|
end
|
|
157
|
-
properties 'jruby.version' => version,
|
|
158
|
-
'jruby.versions' => version,
|
|
159
|
-
'bc.versions' => supported_bc_versions.join(',')
|
|
160
165
|
end
|
|
161
|
-
}
|
|
162
166
|
|
|
163
167
|
profile :id => 'release' do
|
|
164
168
|
plugin :gpg, '1.6' do
|
data/README.md
CHANGED
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
[JRuby-OpenSSL](https://github.com/jruby/jruby-openssl) is an add-on gem for
|
|
4
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](https://www.bouncycastle.org/java.html).
|
|
6
|
+
Under the hood it uses the [Bouncy Castle Crypto APIs](https://www.bouncycastle.org/java.html).
|
|
7
7
|
|
|
8
|
-
Each jruby-openssl gem release includes
|
|
9
|
-
|
|
8
|
+
Each jruby-openssl gem release includes the Bouncy Castle library (BC Provider and
|
|
9
|
+
PKIX/CMS/EAC/PKCS/OCSP/TSP/OPENSSL jars), usually the latest available version.
|
|
10
10
|
|
|
11
11
|
Please report bugs and incompatibilities (preferably with test-cases) to either
|
|
12
12
|
the JRuby [mailing list][1] or the [bug tracker][2].
|
|
@@ -28,48 +28,46 @@ the JRuby [mailing list][1] or the [bug tracker][2].
|
|
|
28
28
|
| ~>0.12.x | 9.1.x-9.3.x | Java 8-15 | 1.65-1.68 |
|
|
29
29
|
| ~>0.13.x | 9.1.x-9.4.x | Java 8-17 | 1.68-1.69 |
|
|
30
30
|
| ~>0.14.x | 9.1.x-9.4.x | Java 8-21 | 1.71-1.74 |
|
|
31
|
-
| ~>0.15.x | 9.2.x-
|
|
31
|
+
| ~>0.15.x | 9.2.x-10.0.x | Java 8-25 | 1.78-1.83 |
|
|
32
32
|
|
|
33
|
-
NOTE: backwards JRuby compatibility was not handled for versions <= **0.9.6**
|
|
33
|
+
NOTE: backwards JRuby compatibility was not handled for versions <= **0.9.6**
|
|
34
34
|
|
|
35
35
|
## Security
|
|
36
36
|
|
|
37
|
-
JRuby-OpenSSL is an essential part of [JRuby](https://www.jruby.org/), please report security vulnerabilities to
|
|
37
|
+
JRuby-OpenSSL is an essential part of [JRuby](https://www.jruby.org/), please report security vulnerabilities to
|
|
38
38
|
`security@jruby.org` as detailed on JRuby's [security page](https://www.jruby.org/security) or using [GitHub][0].
|
|
39
|
-
|
|
40
|
-
Please note that most OpenSSL vulnerabilities do not effect JRuby since its not using
|
|
41
|
-
any of OpenSSL's C code, only Ruby parts (*.rb) are the same as in MRI's OpenSSL library.
|
|
42
39
|
|
|
43
|
-
|
|
40
|
+
Please note that most OpenSSL vulnerabilities do not affect JRuby since it's not using
|
|
41
|
+
any of OpenSSL's C code, only Ruby parts (*.rb) are the same as in MRI's OpenSSL library.
|
|
44
42
|
|
|
45
|
-
|
|
43
|
+
## Testing
|
|
46
44
|
|
|
47
45
|
rake jar:all # creates pom.xml and generates jopenssl.jar under lib
|
|
48
46
|
mvn test
|
|
49
47
|
|
|
50
|
-
will run (
|
|
51
|
-
|
|
48
|
+
This will run (JUnit as well as Ruby) tests against the default JRuby version.
|
|
49
|
+
To pick a different JRuby version:
|
|
52
50
|
|
|
53
|
-
mvn test -Djruby.versions=9.
|
|
51
|
+
mvn test -Djruby.versions=9.4.14.0
|
|
54
52
|
|
|
55
|
-
|
|
56
|
-
tests run for each
|
|
53
|
+
For running integration tests the gem will be installed first and the same
|
|
54
|
+
tests run for each supported Bouncy Castle version (see [listing][3]):
|
|
57
55
|
|
|
58
|
-
mvn verify -P test-9.
|
|
56
|
+
mvn verify -P test-9.4.14.0,test-9.2.21.0
|
|
59
57
|
|
|
60
|
-
|
|
58
|
+
Or pick a specific Bouncy Castle version:
|
|
61
59
|
|
|
62
|
-
mvn verify -P test-9.
|
|
60
|
+
mvn verify -P test-9.4.14.0 -Dbc.versions=1.78
|
|
63
61
|
|
|
64
|
-
NOTE: you can pick any
|
|
62
|
+
NOTE: you can pick any JRuby version which is on [Maven Central][4] or on [ci.jruby][5]
|
|
65
63
|
|
|
66
64
|
## License
|
|
67
65
|
|
|
68
|
-
(c) 2009-
|
|
66
|
+
(c) 2009-2026 JRuby distributed under EPL 1.0/GPL 2.0/LGPL 2.1
|
|
69
67
|
|
|
70
68
|
[0]: https://github.com/jruby/jruby-openssl/security
|
|
71
69
|
[1]: https://github.com/jruby/jruby/wiki/MailingLists
|
|
72
70
|
[2]: https://github.com/jruby/jruby-openssl/issues/new
|
|
73
71
|
[3]: https://github.com/jruby/jruby-openssl/tree/master/integration
|
|
74
|
-
[4]:
|
|
72
|
+
[4]: https://repo1.maven.org/maven2/org/jruby/
|
|
75
73
|
[5]: https://www.jruby.org/nightly
|
data/lib/jopenssl/version.rb
CHANGED
data/lib/jopenssl.jar
CHANGED
|
Binary file
|
data/lib/openssl/ssl.rb
CHANGED
|
@@ -138,7 +138,7 @@ YoaOffgTf5qxiwkjnlVZQc3whgnEt9FpVMvQ9eknyeGB5KHfayAc3+hUAvI3/Cr3
|
|
|
138
138
|
def set_params(params={})
|
|
139
139
|
params = DEFAULT_PARAMS.merge(params)
|
|
140
140
|
self.options = params.delete(:options) # set before min_version/max_version
|
|
141
|
-
params.each{|name, value| self.__send__("#{name}=", value) }
|
|
141
|
+
params.each{ |name, value| self.__send__("#{name}=", value) }
|
|
142
142
|
if self.verify_mode != OpenSSL::SSL::VERIFY_NONE
|
|
143
143
|
unless self.ca_file or self.ca_path or self.cert_store
|
|
144
144
|
self.cert_store = DEFAULT_CERT_STORE
|
|
@@ -245,6 +245,14 @@ YoaOffgTf5qxiwkjnlVZQc3whgnEt9FpVMvQ9eknyeGB5KHfayAc3+hUAvI3/Cr3
|
|
|
245
245
|
to_io.peeraddr
|
|
246
246
|
end
|
|
247
247
|
|
|
248
|
+
def local_address
|
|
249
|
+
to_io.local_address
|
|
250
|
+
end
|
|
251
|
+
|
|
252
|
+
def remote_address
|
|
253
|
+
to_io.remote_address
|
|
254
|
+
end
|
|
255
|
+
|
|
248
256
|
def setsockopt(level, optname, optval)
|
|
249
257
|
to_io.setsockopt(level, optname, optval)
|
|
250
258
|
end
|
|
@@ -264,6 +272,36 @@ YoaOffgTf5qxiwkjnlVZQc3whgnEt9FpVMvQ9eknyeGB5KHfayAc3+hUAvI3/Cr3
|
|
|
264
272
|
def do_not_reverse_lookup=(flag)
|
|
265
273
|
to_io.do_not_reverse_lookup = flag
|
|
266
274
|
end
|
|
275
|
+
|
|
276
|
+
def close_on_exec=(value)
|
|
277
|
+
to_io.close_on_exec = value
|
|
278
|
+
end
|
|
279
|
+
|
|
280
|
+
def close_on_exec?
|
|
281
|
+
to_io.close_on_exec?
|
|
282
|
+
end
|
|
283
|
+
|
|
284
|
+
def wait(*args)
|
|
285
|
+
to_io.wait(*args)
|
|
286
|
+
end
|
|
287
|
+
|
|
288
|
+
def wait_readable(*args)
|
|
289
|
+
to_io.wait_readable(*args)
|
|
290
|
+
end
|
|
291
|
+
|
|
292
|
+
def wait_writable(*args)
|
|
293
|
+
to_io.wait_writable(*args)
|
|
294
|
+
end
|
|
295
|
+
|
|
296
|
+
if IO.method_defined?(:timeout)
|
|
297
|
+
def timeout
|
|
298
|
+
to_io.timeout
|
|
299
|
+
end
|
|
300
|
+
|
|
301
|
+
def timeout=(value)
|
|
302
|
+
to_io.timeout=(value)
|
|
303
|
+
end
|
|
304
|
+
end
|
|
267
305
|
end
|
|
268
306
|
|
|
269
307
|
def verify_certificate_identity(cert, hostname)
|
|
@@ -419,6 +457,32 @@ YoaOffgTf5qxiwkjnlVZQc3whgnEt9FpVMvQ9eknyeGB5KHfayAc3+hUAvI3/Cr3
|
|
|
419
457
|
nil
|
|
420
458
|
end unless method_defined? :session # JRuby
|
|
421
459
|
|
|
460
|
+
# Close the stream for reading.
|
|
461
|
+
# This method is ignored by OpenSSL as there is no reasonable way to
|
|
462
|
+
# implement it, but exists for compatibility with IO.
|
|
463
|
+
def close_read
|
|
464
|
+
# Unsupported and ignored.
|
|
465
|
+
# Just don't read any more.
|
|
466
|
+
end
|
|
467
|
+
|
|
468
|
+
# Closes the stream for writing. The behavior of this method depends on
|
|
469
|
+
# the version of OpenSSL and the TLS protocol in use.
|
|
470
|
+
#
|
|
471
|
+
# - Sends a 'close_notify' alert to the peer.
|
|
472
|
+
# - Does not wait for the peer's 'close_notify' alert in response.
|
|
473
|
+
#
|
|
474
|
+
# In TLS 1.2 and earlier:
|
|
475
|
+
# - On receipt of a 'close_notify' alert, responds with a 'close_notify'
|
|
476
|
+
# alert of its own and close down the connection immediately,
|
|
477
|
+
# discarding any pending writes.
|
|
478
|
+
#
|
|
479
|
+
# Therefore, on TLS 1.2, this method will cause the connection to be
|
|
480
|
+
# completely shut down. On TLS 1.3, the connection will remain open for
|
|
481
|
+
# reading only.
|
|
482
|
+
def close_write
|
|
483
|
+
stop
|
|
484
|
+
end
|
|
485
|
+
|
|
422
486
|
private
|
|
423
487
|
|
|
424
488
|
def using_anon_cipher?
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
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.15.
|
|
14
|
+
<version>0.15.7</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>
|
|
@@ -60,7 +60,7 @@ DO NOT MODIFY - GENERATED CODE
|
|
|
60
60
|
</snapshotRepository>
|
|
61
61
|
</distributionManagement>
|
|
62
62
|
<properties>
|
|
63
|
-
<bc.versions>1.
|
|
63
|
+
<bc.versions>1.83</bc.versions>
|
|
64
64
|
<invoker.skip>${maven.test.skip}</invoker.skip>
|
|
65
65
|
<invoker.test>${bc.versions}</invoker.test>
|
|
66
66
|
<jruby.plugins.version>3.0.2</jruby.plugins.version>
|
|
@@ -72,32 +72,33 @@ DO NOT MODIFY - GENERATED CODE
|
|
|
72
72
|
<polyglot.dump.pom>pom.xml</polyglot.dump.pom>
|
|
73
73
|
<polyglot.dump.readonly>false</polyglot.dump.readonly>
|
|
74
74
|
<runit.dir>src/test/ruby/**/test_*.rb</runit.dir>
|
|
75
|
+
<skipRunit>true</skipRunit>
|
|
75
76
|
</properties>
|
|
76
77
|
<dependencies>
|
|
77
78
|
<dependency>
|
|
78
79
|
<groupId>org.bouncycastle</groupId>
|
|
79
80
|
<artifactId>bcprov-jdk18on</artifactId>
|
|
80
|
-
<version>1.
|
|
81
|
+
<version>1.83</version>
|
|
81
82
|
</dependency>
|
|
82
83
|
<dependency>
|
|
83
84
|
<groupId>org.bouncycastle</groupId>
|
|
84
85
|
<artifactId>bcpkix-jdk18on</artifactId>
|
|
85
|
-
<version>1.
|
|
86
|
+
<version>1.83</version>
|
|
86
87
|
</dependency>
|
|
87
88
|
<dependency>
|
|
88
89
|
<groupId>org.bouncycastle</groupId>
|
|
89
90
|
<artifactId>bctls-jdk18on</artifactId>
|
|
90
|
-
<version>1.
|
|
91
|
+
<version>1.83</version>
|
|
91
92
|
</dependency>
|
|
92
93
|
<dependency>
|
|
93
94
|
<groupId>org.bouncycastle</groupId>
|
|
94
95
|
<artifactId>bcutil-jdk18on</artifactId>
|
|
95
|
-
<version>1.
|
|
96
|
+
<version>1.83</version>
|
|
96
97
|
</dependency>
|
|
97
98
|
<dependency>
|
|
98
99
|
<groupId>org.jruby</groupId>
|
|
99
100
|
<artifactId>jruby-core</artifactId>
|
|
100
|
-
<version>9.
|
|
101
|
+
<version>9.2.0.0</version>
|
|
101
102
|
<scope>provided</scope>
|
|
102
103
|
</dependency>
|
|
103
104
|
<dependency>
|
|
@@ -274,7 +275,6 @@ DO NOT MODIFY - GENERATED CODE
|
|
|
274
275
|
<configuration>
|
|
275
276
|
<source>1.8</source>
|
|
276
277
|
<target>1.8</target>
|
|
277
|
-
<release>8</release>
|
|
278
278
|
<encoding>UTF-8</encoding>
|
|
279
279
|
<debug>true</debug>
|
|
280
280
|
<showWarnings>true</showWarnings>
|
|
@@ -369,7 +369,7 @@ DO NOT MODIFY - GENERATED CODE
|
|
|
369
369
|
</build>
|
|
370
370
|
<profiles>
|
|
371
371
|
<profile>
|
|
372
|
-
<id>test-9.
|
|
372
|
+
<id>test-9.2.19.0</id>
|
|
373
373
|
<build>
|
|
374
374
|
<plugins>
|
|
375
375
|
<plugin>
|
|
@@ -402,127 +402,13 @@ DO NOT MODIFY - GENERATED CODE
|
|
|
402
402
|
</plugins>
|
|
403
403
|
</build>
|
|
404
404
|
<properties>
|
|
405
|
-
<bc.versions>1.
|
|
406
|
-
<jruby.version>9.
|
|
407
|
-
<jruby.versions>9.
|
|
408
|
-
</properties>
|
|
409
|
-
</profile>
|
|
410
|
-
<profile>
|
|
411
|
-
<id>test-9.1.8.0</id>
|
|
412
|
-
<build>
|
|
413
|
-
<plugins>
|
|
414
|
-
<plugin>
|
|
415
|
-
<artifactId>maven-invoker-plugin</artifactId>
|
|
416
|
-
<version>1.8</version>
|
|
417
|
-
<executions>
|
|
418
|
-
<execution>
|
|
419
|
-
<goals>
|
|
420
|
-
<goal>install</goal>
|
|
421
|
-
<goal>run</goal>
|
|
422
|
-
</goals>
|
|
423
|
-
<configuration>
|
|
424
|
-
<projectsDirectory>integration</projectsDirectory>
|
|
425
|
-
<pomIncludes>
|
|
426
|
-
<pomInclude>*/pom.xml</pomInclude>
|
|
427
|
-
</pomIncludes>
|
|
428
|
-
<streamLogs>true</streamLogs>
|
|
429
|
-
<properties>
|
|
430
|
-
<jruby.versions>${jruby.versions}</jruby.versions>
|
|
431
|
-
<jruby.modes>${jruby.modes}</jruby.modes>
|
|
432
|
-
<jruby.openssl.version>${project.version}</jruby.openssl.version>
|
|
433
|
-
<bc.versions>${bc.versions}</bc.versions>
|
|
434
|
-
<runit.dir>${runit.dir}</runit.dir>
|
|
435
|
-
</properties>
|
|
436
|
-
</configuration>
|
|
437
|
-
</execution>
|
|
438
|
-
</executions>
|
|
439
|
-
</plugin>
|
|
440
|
-
</plugins>
|
|
441
|
-
</build>
|
|
442
|
-
<properties>
|
|
443
|
-
<bc.versions>1.60,1.61,1.62,1.63,1.64,1.65,1.66,1.67,1.68</bc.versions>
|
|
444
|
-
<jruby.version>9.1.8.0</jruby.version>
|
|
445
|
-
<jruby.versions>9.1.8.0</jruby.versions>
|
|
446
|
-
</properties>
|
|
447
|
-
</profile>
|
|
448
|
-
<profile>
|
|
449
|
-
<id>test-9.1.12.0</id>
|
|
450
|
-
<build>
|
|
451
|
-
<plugins>
|
|
452
|
-
<plugin>
|
|
453
|
-
<artifactId>maven-invoker-plugin</artifactId>
|
|
454
|
-
<version>1.8</version>
|
|
455
|
-
<executions>
|
|
456
|
-
<execution>
|
|
457
|
-
<goals>
|
|
458
|
-
<goal>install</goal>
|
|
459
|
-
<goal>run</goal>
|
|
460
|
-
</goals>
|
|
461
|
-
<configuration>
|
|
462
|
-
<projectsDirectory>integration</projectsDirectory>
|
|
463
|
-
<pomIncludes>
|
|
464
|
-
<pomInclude>*/pom.xml</pomInclude>
|
|
465
|
-
</pomIncludes>
|
|
466
|
-
<streamLogs>true</streamLogs>
|
|
467
|
-
<properties>
|
|
468
|
-
<jruby.versions>${jruby.versions}</jruby.versions>
|
|
469
|
-
<jruby.modes>${jruby.modes}</jruby.modes>
|
|
470
|
-
<jruby.openssl.version>${project.version}</jruby.openssl.version>
|
|
471
|
-
<bc.versions>${bc.versions}</bc.versions>
|
|
472
|
-
<runit.dir>${runit.dir}</runit.dir>
|
|
473
|
-
</properties>
|
|
474
|
-
</configuration>
|
|
475
|
-
</execution>
|
|
476
|
-
</executions>
|
|
477
|
-
</plugin>
|
|
478
|
-
</plugins>
|
|
479
|
-
</build>
|
|
480
|
-
<properties>
|
|
481
|
-
<bc.versions>1.60,1.61,1.62,1.63,1.64,1.65,1.66,1.67,1.68</bc.versions>
|
|
482
|
-
<jruby.version>9.1.12.0</jruby.version>
|
|
483
|
-
<jruby.versions>9.1.12.0</jruby.versions>
|
|
484
|
-
</properties>
|
|
485
|
-
</profile>
|
|
486
|
-
<profile>
|
|
487
|
-
<id>test-9.1.16.0</id>
|
|
488
|
-
<build>
|
|
489
|
-
<plugins>
|
|
490
|
-
<plugin>
|
|
491
|
-
<artifactId>maven-invoker-plugin</artifactId>
|
|
492
|
-
<version>1.8</version>
|
|
493
|
-
<executions>
|
|
494
|
-
<execution>
|
|
495
|
-
<goals>
|
|
496
|
-
<goal>install</goal>
|
|
497
|
-
<goal>run</goal>
|
|
498
|
-
</goals>
|
|
499
|
-
<configuration>
|
|
500
|
-
<projectsDirectory>integration</projectsDirectory>
|
|
501
|
-
<pomIncludes>
|
|
502
|
-
<pomInclude>*/pom.xml</pomInclude>
|
|
503
|
-
</pomIncludes>
|
|
504
|
-
<streamLogs>true</streamLogs>
|
|
505
|
-
<properties>
|
|
506
|
-
<jruby.versions>${jruby.versions}</jruby.versions>
|
|
507
|
-
<jruby.modes>${jruby.modes}</jruby.modes>
|
|
508
|
-
<jruby.openssl.version>${project.version}</jruby.openssl.version>
|
|
509
|
-
<bc.versions>${bc.versions}</bc.versions>
|
|
510
|
-
<runit.dir>${runit.dir}</runit.dir>
|
|
511
|
-
</properties>
|
|
512
|
-
</configuration>
|
|
513
|
-
</execution>
|
|
514
|
-
</executions>
|
|
515
|
-
</plugin>
|
|
516
|
-
</plugins>
|
|
517
|
-
</build>
|
|
518
|
-
<properties>
|
|
519
|
-
<bc.versions>1.60,1.61,1.62,1.63,1.64,1.65,1.66,1.67,1.68</bc.versions>
|
|
520
|
-
<jruby.version>9.1.16.0</jruby.version>
|
|
521
|
-
<jruby.versions>9.1.16.0</jruby.versions>
|
|
405
|
+
<bc.versions>1.78,1.79,1.80,1.81,1.82,1.83</bc.versions>
|
|
406
|
+
<jruby.version>9.2.19.0</jruby.version>
|
|
407
|
+
<jruby.versions>9.2.19.0</jruby.versions>
|
|
522
408
|
</properties>
|
|
523
409
|
</profile>
|
|
524
410
|
<profile>
|
|
525
|
-
<id>test-9.
|
|
411
|
+
<id>test-9.2.20.1</id>
|
|
526
412
|
<build>
|
|
527
413
|
<plugins>
|
|
528
414
|
<plugin>
|
|
@@ -554,13 +440,13 @@ DO NOT MODIFY - GENERATED CODE
|
|
|
554
440
|
</plugins>
|
|
555
441
|
</build>
|
|
556
442
|
<properties>
|
|
557
|
-
<bc.versions>1.
|
|
558
|
-
<jruby.version>9.
|
|
559
|
-
<jruby.versions>9.
|
|
443
|
+
<bc.versions>1.78,1.79,1.80,1.81,1.82,1.83</bc.versions>
|
|
444
|
+
<jruby.version>9.2.20.1</jruby.version>
|
|
445
|
+
<jruby.versions>9.2.20.1</jruby.versions>
|
|
560
446
|
</properties>
|
|
561
447
|
</profile>
|
|
562
448
|
<profile>
|
|
563
|
-
<id>test-9.
|
|
449
|
+
<id>test-9.3.3.0</id>
|
|
564
450
|
<build>
|
|
565
451
|
<plugins>
|
|
566
452
|
<plugin>
|
|
@@ -592,13 +478,13 @@ DO NOT MODIFY - GENERATED CODE
|
|
|
592
478
|
</plugins>
|
|
593
479
|
</build>
|
|
594
480
|
<properties>
|
|
595
|
-
<bc.versions>1.
|
|
596
|
-
<jruby.version>9.
|
|
597
|
-
<jruby.versions>9.
|
|
481
|
+
<bc.versions>1.78,1.79,1.80,1.81,1.82,1.83</bc.versions>
|
|
482
|
+
<jruby.version>9.3.3.0</jruby.version>
|
|
483
|
+
<jruby.versions>9.3.3.0</jruby.versions>
|
|
598
484
|
</properties>
|
|
599
485
|
</profile>
|
|
600
486
|
<profile>
|
|
601
|
-
<id>test-9.
|
|
487
|
+
<id>test-9.3.13.0</id>
|
|
602
488
|
<build>
|
|
603
489
|
<plugins>
|
|
604
490
|
<plugin>
|
|
@@ -630,13 +516,13 @@ DO NOT MODIFY - GENERATED CODE
|
|
|
630
516
|
</plugins>
|
|
631
517
|
</build>
|
|
632
518
|
<properties>
|
|
633
|
-
<bc.versions>1.
|
|
634
|
-
<jruby.version>9.
|
|
635
|
-
<jruby.versions>9.
|
|
519
|
+
<bc.versions>1.78,1.79,1.80,1.81,1.82,1.83</bc.versions>
|
|
520
|
+
<jruby.version>9.3.13.0</jruby.version>
|
|
521
|
+
<jruby.versions>9.3.13.0</jruby.versions>
|
|
636
522
|
</properties>
|
|
637
523
|
</profile>
|
|
638
524
|
<profile>
|
|
639
|
-
<id>test-9.
|
|
525
|
+
<id>test-9.4.8.0</id>
|
|
640
526
|
<build>
|
|
641
527
|
<plugins>
|
|
642
528
|
<plugin>
|
|
@@ -668,13 +554,13 @@ DO NOT MODIFY - GENERATED CODE
|
|
|
668
554
|
</plugins>
|
|
669
555
|
</build>
|
|
670
556
|
<properties>
|
|
671
|
-
<bc.versions>1.
|
|
672
|
-
<jruby.version>9.
|
|
673
|
-
<jruby.versions>9.
|
|
557
|
+
<bc.versions>1.78,1.79,1.80,1.81,1.82,1.83</bc.versions>
|
|
558
|
+
<jruby.version>9.4.8.0</jruby.version>
|
|
559
|
+
<jruby.versions>9.4.8.0</jruby.versions>
|
|
674
560
|
</properties>
|
|
675
561
|
</profile>
|
|
676
562
|
<profile>
|
|
677
|
-
<id>test-9.
|
|
563
|
+
<id>test-9.4.14.0</id>
|
|
678
564
|
<build>
|
|
679
565
|
<plugins>
|
|
680
566
|
<plugin>
|
|
@@ -706,13 +592,13 @@ DO NOT MODIFY - GENERATED CODE
|
|
|
706
592
|
</plugins>
|
|
707
593
|
</build>
|
|
708
594
|
<properties>
|
|
709
|
-
<bc.versions>1.
|
|
710
|
-
<jruby.version>9.
|
|
711
|
-
<jruby.versions>9.
|
|
595
|
+
<bc.versions>1.78,1.79,1.80,1.81,1.82,1.83</bc.versions>
|
|
596
|
+
<jruby.version>9.4.14.0</jruby.version>
|
|
597
|
+
<jruby.versions>9.4.14.0</jruby.versions>
|
|
712
598
|
</properties>
|
|
713
599
|
</profile>
|
|
714
600
|
<profile>
|
|
715
|
-
<id>test-
|
|
601
|
+
<id>test-10.0.2.0</id>
|
|
716
602
|
<build>
|
|
717
603
|
<plugins>
|
|
718
604
|
<plugin>
|
|
@@ -744,9 +630,9 @@ DO NOT MODIFY - GENERATED CODE
|
|
|
744
630
|
</plugins>
|
|
745
631
|
</build>
|
|
746
632
|
<properties>
|
|
747
|
-
<bc.versions>1.
|
|
748
|
-
<jruby.version>
|
|
749
|
-
<jruby.versions>
|
|
633
|
+
<bc.versions>1.78,1.79,1.80,1.81,1.82,1.83</bc.versions>
|
|
634
|
+
<jruby.version>10.0.2.0</jruby.version>
|
|
635
|
+
<jruby.versions>10.0.2.0</jruby.versions>
|
|
750
636
|
</properties>
|
|
751
637
|
</profile>
|
|
752
638
|
<profile>
|
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.15.
|
|
4
|
+
version: 0.15.7
|
|
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:
|
|
13
|
+
date: 2026-04-03 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.
|
|
@@ -41,10 +41,10 @@ files:
|
|
|
41
41
|
- lib/openssl/pkey.rb
|
|
42
42
|
- lib/openssl/ssl.rb
|
|
43
43
|
- lib/openssl/x509.rb
|
|
44
|
-
- lib/org/bouncycastle/bcpkix-jdk18on/1.
|
|
45
|
-
- lib/org/bouncycastle/bcprov-jdk18on/1.
|
|
46
|
-
- lib/org/bouncycastle/bctls-jdk18on/1.
|
|
47
|
-
- lib/org/bouncycastle/bcutil-jdk18on/1.
|
|
44
|
+
- lib/org/bouncycastle/bcpkix-jdk18on/1.83/bcpkix-jdk18on-1.83.jar
|
|
45
|
+
- lib/org/bouncycastle/bcprov-jdk18on/1.83/bcprov-jdk18on-1.83.jar
|
|
46
|
+
- lib/org/bouncycastle/bctls-jdk18on/1.83/bctls-jdk18on-1.83.jar
|
|
47
|
+
- lib/org/bouncycastle/bcutil-jdk18on/1.83/bcutil-jdk18on-1.83.jar
|
|
48
48
|
- pom.xml
|
|
49
49
|
homepage: https://github.com/jruby/jruby-openssl
|
|
50
50
|
licenses:
|
|
@@ -67,10 +67,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
67
67
|
- !ruby/object:Gem::Version
|
|
68
68
|
version: '0'
|
|
69
69
|
requirements:
|
|
70
|
-
- jar org.bouncycastle:bcprov-jdk18on, 1.
|
|
71
|
-
- jar org.bouncycastle:bcpkix-jdk18on, 1.
|
|
72
|
-
- jar org.bouncycastle:bctls-jdk18on, 1.
|
|
73
|
-
- jar org.bouncycastle:bcutil-jdk18on, 1.
|
|
70
|
+
- jar org.bouncycastle:bcprov-jdk18on, 1.83
|
|
71
|
+
- jar org.bouncycastle:bcpkix-jdk18on, 1.83
|
|
72
|
+
- jar org.bouncycastle:bctls-jdk18on, 1.83
|
|
73
|
+
- jar org.bouncycastle:bcutil-jdk18on, 1.83
|
|
74
74
|
rubygems_version: 3.1.6
|
|
75
75
|
signing_key:
|
|
76
76
|
specification_version: 4
|
|
Binary file
|