jruby-openssl 0.15.5-java → 0.15.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: cdaa4d0178493f8513475352340c08ebc227940a0952285378ef16b7447a6927
4
- data.tar.gz: 2559085b52ffdc8f3c337dcef67647afae6d0b7b94e486a5423326e132534dc9
3
+ metadata.gz: 87d3eeffdbcc04fe204cae60784e83593eff6976e9c52679985424250f9a8aae
4
+ data.tar.gz: 6dd346feaa8d563af4df4c90223afa3497998eb4e7ff0f4b1b83fc2584b47739
5
5
  SHA512:
6
- metadata.gz: 4490359da0c9a05d948c10be73a8b229d8341f5109b81345640840a63fa58f169f8f1d18bdbf0ba0f0b85d0f24f4497688097ac587c88b327b6aab9624f93819
7
- data.tar.gz: aec61c569dae2eddafcba83ec38e52c7da97d9798ee12f47606620a19bf5e51ca99fb01fba9f16b61eaf7c9924b40e7bb573619a07d0131d67a33d1e9817dd08
6
+ metadata.gz: 6e63950f2ff3d4972ca5e3ba635a097393b4b5ef6332082b78c82558e620a3bd44ad392c7b40efcbd79c4ad47382a6fe3db0b5fef12a4c47ba08e7457c6b2ccf
7
+ data.tar.gz: 279ddd88c8e2f3533a568e74f8e10c2a83ed0b06c2bf4638bfa228e7ed960d0ef3c26831d00f30e3927d2c93216a54014d2f95d17aa63bd1fd100b2adb38a26c
data/History.md CHANGED
@@ -1,3 +1,35 @@
1
+ ## 0.15.6
2
+
3
+ Upgrading Bouncy Castle to version 1.83
4
+ Extensive PKey compatibility improvements (EC, RSA, DSA)
5
+ X.509 certificate handling and ASN.1 tagged improvements.
6
+
7
+ * [fix] parse certificate crlDistributionPoints (#205)
8
+ * [fix] `OpenSSL::Cipher#iv_len` for ECB (#169)
9
+ * [compat] implement `OpenSSL::PKey#compare?`
10
+ * [fix] fallback to raw bytes on unknown tag
11
+ * [compat] implement `OpenSSL::KDF.hkdf` (#321)
12
+ * [fix] `OpenSSL::X509::Request#dup` behavior
13
+ * [compat] implement `X509::Certificate#==`
14
+ * [compat] add `OpenSSL::X509::Certificate#tbs_bytes`
15
+ * [compat] implement X.509 extension value_der
16
+ * [fix] handle `PKey::EC.new` with encrypted PEM (#328)
17
+ * [compat] add `PKey::EC#derive` and fix nil group (#257, #326)
18
+ * [compat] support `PKey::EC#sign_raw` and verify_raw
19
+ * [compat] implement `EC::Group#to_der` + related bits
20
+ * [compat] support `PKey::RSA#sign_pss` and `verify_pss` (#288)
21
+ * [compat] support `PKey::RSA#sign_raw` and `verify_raw` (#332)
22
+ * [compat] support `PKey::DSA#sign_raw` and `verify_raw`
23
+ * [compat] improve DSA key parsing and errors
24
+ * [fix] `PKey.read` to parse subject PKI
25
+ * [compat] implement `RSA#private_to_der`/`private_to_pem`
26
+ * [compat] improve ASN.1 tagging behavior
27
+ * [compat] improve `PKey::EC` (raise) behavior
28
+ * [fix] do setup on frozen ssl context (#340)
29
+ * [compat] sync up ssl.rb with upstream
30
+ * [fix] compat with JRuby 10 `initialize_copy` changes
31
+ * [deps] upgrade BC to version 1.83
32
+
1
33
  ## 0.15.5
2
34
 
3
35
  * [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.1.11.0', :scope => :provided
85
+ jar 'org.jruby:jruby-core', '9.2.19.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 = ENV_JAVA['java.version'].to_i >= 9 ? '9.2.19.0' : '9.1.17.0'
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.60 1.61 1.62 1.63 1.64 1.65 1.66 1.67 1.68 }
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]
@@ -146,19 +146,22 @@ invoker_run_options = {
146
146
  'runit.dir' => '${runit.dir}' }
147
147
  }
148
148
 
149
- jruby_9_K_versions = %w{ 9.1.2.0 9.1.8.0 9.1.12.0 9.1.16.0 9.1.17.0 }
150
- jruby_9_K_versions += %w{ 9.2.0.0 9.2.5.0 9.2.10.0 9.2.17.0 9.2.19.0 }
151
-
152
- jruby_9_K_versions.each { |version|
153
- profile :id => "test-#{version}" do
154
- plugin :invoker, '1.8' do
155
- execute_goals( :install, :run, invoker_run_options )
149
+ jruby_versions = []
150
+ jruby_versions += %w{ 9.2.19.0 9.2.20.1 }
151
+ jruby_versions += %w{ 9.3.3.0 9.3.13.0 }
152
+ jruby_versions += %w{ 9.4.8.0 9.4.14.0 }
153
+ jruby_versions += %w{ 10.0.2.0 }
154
+
155
+ jruby_versions.each do |version|
156
+ profile :id => "test-#{version}" do
157
+ plugin :invoker, '1.8' do
158
+ execute_goals( :install, :run, invoker_run_options )
159
+ end
160
+ properties 'jruby.version' => version,
161
+ 'jruby.versions' => version,
162
+ 'bc.versions' => supported_bc_versions.join(',')
156
163
  end
157
- properties 'jruby.version' => version,
158
- 'jruby.versions' => version,
159
- 'bc.versions' => supported_bc_versions.join(',')
160
164
  end
161
- }
162
165
 
163
166
  profile :id => 'release' do
164
167
  plugin :gpg, '1.6' do
@@ -1,6 +1,6 @@
1
1
  module JOpenSSL
2
- VERSION = '0.15.5'
3
- BOUNCY_CASTLE_VERSION = '1.81'
2
+ VERSION = '0.15.6'
3
+ BOUNCY_CASTLE_VERSION = '1.83'
4
4
  end
5
5
 
6
6
  Object.class_eval do
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?
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.5</version>
14
+ <version>0.15.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>
@@ -60,7 +60,7 @@ DO NOT MODIFY - GENERATED CODE
60
60
  </snapshotRepository>
61
61
  </distributionManagement>
62
62
  <properties>
63
- <bc.versions>1.81</bc.versions>
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>
@@ -77,27 +77,27 @@ DO NOT MODIFY - GENERATED CODE
77
77
  <dependency>
78
78
  <groupId>org.bouncycastle</groupId>
79
79
  <artifactId>bcprov-jdk18on</artifactId>
80
- <version>1.81</version>
80
+ <version>1.83</version>
81
81
  </dependency>
82
82
  <dependency>
83
83
  <groupId>org.bouncycastle</groupId>
84
84
  <artifactId>bcpkix-jdk18on</artifactId>
85
- <version>1.81</version>
85
+ <version>1.83</version>
86
86
  </dependency>
87
87
  <dependency>
88
88
  <groupId>org.bouncycastle</groupId>
89
89
  <artifactId>bctls-jdk18on</artifactId>
90
- <version>1.81</version>
90
+ <version>1.83</version>
91
91
  </dependency>
92
92
  <dependency>
93
93
  <groupId>org.bouncycastle</groupId>
94
94
  <artifactId>bcutil-jdk18on</artifactId>
95
- <version>1.81</version>
95
+ <version>1.83</version>
96
96
  </dependency>
97
97
  <dependency>
98
98
  <groupId>org.jruby</groupId>
99
99
  <artifactId>jruby-core</artifactId>
100
- <version>9.1.11.0</version>
100
+ <version>9.2.19.0</version>
101
101
  <scope>provided</scope>
102
102
  </dependency>
103
103
  <dependency>
@@ -274,7 +274,6 @@ DO NOT MODIFY - GENERATED CODE
274
274
  <configuration>
275
275
  <source>1.8</source>
276
276
  <target>1.8</target>
277
- <release>8</release>
278
277
  <encoding>UTF-8</encoding>
279
278
  <debug>true</debug>
280
279
  <showWarnings>true</showWarnings>
@@ -369,7 +368,7 @@ DO NOT MODIFY - GENERATED CODE
369
368
  </build>
370
369
  <profiles>
371
370
  <profile>
372
- <id>test-9.1.2.0</id>
371
+ <id>test-9.2.19.0</id>
373
372
  <build>
374
373
  <plugins>
375
374
  <plugin>
@@ -402,127 +401,13 @@ DO NOT MODIFY - GENERATED CODE
402
401
  </plugins>
403
402
  </build>
404
403
  <properties>
405
- <bc.versions>1.60,1.61,1.62,1.63,1.64,1.65,1.66,1.67,1.68</bc.versions>
406
- <jruby.version>9.1.2.0</jruby.version>
407
- <jruby.versions>9.1.2.0</jruby.versions>
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>
404
+ <bc.versions>1.78,1.79,1.80,1.81,1.82,1.83</bc.versions>
405
+ <jruby.version>9.2.19.0</jruby.version>
406
+ <jruby.versions>9.2.19.0</jruby.versions>
522
407
  </properties>
523
408
  </profile>
524
409
  <profile>
525
- <id>test-9.1.17.0</id>
410
+ <id>test-9.2.20.1</id>
526
411
  <build>
527
412
  <plugins>
528
413
  <plugin>
@@ -554,13 +439,13 @@ DO NOT MODIFY - GENERATED CODE
554
439
  </plugins>
555
440
  </build>
556
441
  <properties>
557
- <bc.versions>1.60,1.61,1.62,1.63,1.64,1.65,1.66,1.67,1.68</bc.versions>
558
- <jruby.version>9.1.17.0</jruby.version>
559
- <jruby.versions>9.1.17.0</jruby.versions>
442
+ <bc.versions>1.78,1.79,1.80,1.81,1.82,1.83</bc.versions>
443
+ <jruby.version>9.2.20.1</jruby.version>
444
+ <jruby.versions>9.2.20.1</jruby.versions>
560
445
  </properties>
561
446
  </profile>
562
447
  <profile>
563
- <id>test-9.2.0.0</id>
448
+ <id>test-9.3.3.0</id>
564
449
  <build>
565
450
  <plugins>
566
451
  <plugin>
@@ -592,13 +477,13 @@ DO NOT MODIFY - GENERATED CODE
592
477
  </plugins>
593
478
  </build>
594
479
  <properties>
595
- <bc.versions>1.60,1.61,1.62,1.63,1.64,1.65,1.66,1.67,1.68</bc.versions>
596
- <jruby.version>9.2.0.0</jruby.version>
597
- <jruby.versions>9.2.0.0</jruby.versions>
480
+ <bc.versions>1.78,1.79,1.80,1.81,1.82,1.83</bc.versions>
481
+ <jruby.version>9.3.3.0</jruby.version>
482
+ <jruby.versions>9.3.3.0</jruby.versions>
598
483
  </properties>
599
484
  </profile>
600
485
  <profile>
601
- <id>test-9.2.5.0</id>
486
+ <id>test-9.3.13.0</id>
602
487
  <build>
603
488
  <plugins>
604
489
  <plugin>
@@ -630,13 +515,13 @@ DO NOT MODIFY - GENERATED CODE
630
515
  </plugins>
631
516
  </build>
632
517
  <properties>
633
- <bc.versions>1.60,1.61,1.62,1.63,1.64,1.65,1.66,1.67,1.68</bc.versions>
634
- <jruby.version>9.2.5.0</jruby.version>
635
- <jruby.versions>9.2.5.0</jruby.versions>
518
+ <bc.versions>1.78,1.79,1.80,1.81,1.82,1.83</bc.versions>
519
+ <jruby.version>9.3.13.0</jruby.version>
520
+ <jruby.versions>9.3.13.0</jruby.versions>
636
521
  </properties>
637
522
  </profile>
638
523
  <profile>
639
- <id>test-9.2.10.0</id>
524
+ <id>test-9.4.8.0</id>
640
525
  <build>
641
526
  <plugins>
642
527
  <plugin>
@@ -668,13 +553,13 @@ DO NOT MODIFY - GENERATED CODE
668
553
  </plugins>
669
554
  </build>
670
555
  <properties>
671
- <bc.versions>1.60,1.61,1.62,1.63,1.64,1.65,1.66,1.67,1.68</bc.versions>
672
- <jruby.version>9.2.10.0</jruby.version>
673
- <jruby.versions>9.2.10.0</jruby.versions>
556
+ <bc.versions>1.78,1.79,1.80,1.81,1.82,1.83</bc.versions>
557
+ <jruby.version>9.4.8.0</jruby.version>
558
+ <jruby.versions>9.4.8.0</jruby.versions>
674
559
  </properties>
675
560
  </profile>
676
561
  <profile>
677
- <id>test-9.2.17.0</id>
562
+ <id>test-9.4.14.0</id>
678
563
  <build>
679
564
  <plugins>
680
565
  <plugin>
@@ -706,13 +591,13 @@ DO NOT MODIFY - GENERATED CODE
706
591
  </plugins>
707
592
  </build>
708
593
  <properties>
709
- <bc.versions>1.60,1.61,1.62,1.63,1.64,1.65,1.66,1.67,1.68</bc.versions>
710
- <jruby.version>9.2.17.0</jruby.version>
711
- <jruby.versions>9.2.17.0</jruby.versions>
594
+ <bc.versions>1.78,1.79,1.80,1.81,1.82,1.83</bc.versions>
595
+ <jruby.version>9.4.14.0</jruby.version>
596
+ <jruby.versions>9.4.14.0</jruby.versions>
712
597
  </properties>
713
598
  </profile>
714
599
  <profile>
715
- <id>test-9.2.19.0</id>
600
+ <id>test-10.0.2.0</id>
716
601
  <build>
717
602
  <plugins>
718
603
  <plugin>
@@ -744,9 +629,9 @@ DO NOT MODIFY - GENERATED CODE
744
629
  </plugins>
745
630
  </build>
746
631
  <properties>
747
- <bc.versions>1.60,1.61,1.62,1.63,1.64,1.65,1.66,1.67,1.68</bc.versions>
748
- <jruby.version>9.2.19.0</jruby.version>
749
- <jruby.versions>9.2.19.0</jruby.versions>
632
+ <bc.versions>1.78,1.79,1.80,1.81,1.82,1.83</bc.versions>
633
+ <jruby.version>10.0.2.0</jruby.version>
634
+ <jruby.versions>10.0.2.0</jruby.versions>
750
635
  </properties>
751
636
  </profile>
752
637
  <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.5
4
+ version: 0.15.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: 2025-07-25 00:00:00.000000000 Z
13
+ date: 2026-03-13 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.81/bcpkix-jdk18on-1.81.jar
45
- - lib/org/bouncycastle/bcprov-jdk18on/1.81/bcprov-jdk18on-1.81.jar
46
- - lib/org/bouncycastle/bctls-jdk18on/1.81/bctls-jdk18on-1.81.jar
47
- - lib/org/bouncycastle/bcutil-jdk18on/1.81/bcutil-jdk18on-1.81.jar
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.81
71
- - jar org.bouncycastle:bcpkix-jdk18on, 1.81
72
- - jar org.bouncycastle:bctls-jdk18on, 1.81
73
- - jar org.bouncycastle:bcutil-jdk18on, 1.81
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