jruby-openssl 0.10.4-java → 0.11.0-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: f34e9e3ec200b2913007f65fc46a49e0e94e43a9
4
- data.tar.gz: c4d34a92038fac142e72eed009f43413b95fae22
3
+ metadata.gz: 3b0af65b0a40658f2bfafdd3d8a6bd3112dd0c13
4
+ data.tar.gz: a5d16510be892effe0c7e3004823136f5eaaf196
5
5
  SHA512:
6
- metadata.gz: c508b57c5e45d42df16f76d13a7ea856df673d01ab3ae45b5a418cc70ef62c0b61e47c390d2c028a06e441213e334c3dcaecc497f436947e55af60dcbdf46519
7
- data.tar.gz: 51c7730397879a5e5c6a93598cd8c903d57d49d6a897c951416d6b90266da1081292ac337d26623b20d08a01d720074d79baec0413c35f53b9cd112f31392bd0
6
+ metadata.gz: 14b8ac25affa194b9de7637468d1cf73934c99d6eaa35e6d1882de3e42aaaba27c86409423850c23b9f554f21d6bb9fc64688655de32361723ef9a1cd469df5a
7
+ data.tar.gz: 48cb81a70fd513ffec64a8eea55132eaaa244e61c0a1b809e7fbc32650eb8960345c4b3d527b30e0927a0158d736026d764b23dd2857982c29682e366dd11ec0
data/History.md CHANGED
@@ -1,3 +1,44 @@
1
+ ## 0.11.0
2
+
3
+ NOTE: This release aims to adapt the certificate verification logic to be aligned
4
+ with OpenSSL 1.1.1 as a resolution to issues due *DST Root CA X3* expiration, more
5
+ details at: https://letsencrypt.org/docs/dst-root-ca-x3-expiration-september-2021/
6
+
7
+ The port is expected to be superior compared to the simple legacy verification,
8
+ however in case of issues the previous algorithm is still around and can be toggled
9
+ using `JRUBY_OPTS="-J-Djruby.openssl.x509.store.verify=legacy"` system property.
10
+
11
+ * **OpenSSL 1.1.1 cert verification port** (fixes #236) (#239)
12
+ - as a side-effect part of the PR to "allow multiple certs with same SubjectDN"
13
+ (#198) got reverted, this has been causing verification regressions (since 0.10.5)
14
+ for some users (#232) and is expected to be fixed
15
+ * [fix] replace deprecated getPeerCertificateChain (#231)
16
+
17
+ ## 0.10.7
18
+
19
+ * [feat] upgrade BC library to 1.68
20
+ * [fix] SSLContext#ciphers= (fixes #221 and jruby/jruby#3100) (#222)
21
+ * [fix] Java::JavaLang::StringIndexOutOfBoundsException on ctx.cipher=[] (fixes #220) (#223)
22
+ * [fix] SSLContext#ciphers= compatibility (fixes #223) (#220)
23
+ * [fix] Match OpenSSL::X509::Name.hash implementation with Ruby (#216, #218)
24
+ * [fix] OpenSSL::SSL::SSLContext#min_version= failure (#215)
25
+ * [fix] adds OpenSSL::Cipher#iv_len= setter (#208)
26
+
27
+ ## 0.10.6 (yanked)
28
+
29
+ Due several regressions please update to version 0.10.7 or higher.
30
+
31
+ ## 0.10.5
32
+
33
+ * [fix] EC key sign/verify (#193)
34
+ * [feat] upgrade BC library to 1.65
35
+ * [refactor] clean security helpers to avoid reflection (#197)
36
+ * Just use normal getInstance to get KeyFactory (fixes #197)
37
+ * Allow multiple Certificates with the same SubjectDN in the store (#198)
38
+ * Try direct path for MessageDigest before invasive path (#194)
39
+ (relates to jruby/jruby#6098)
40
+ * [refactor] avoid NativeException usage (jruby/jruby#5646)
41
+
1
42
  ## 0.10.4
2
43
 
3
44
  * Use CertificateFactory.getInstance rather than reflection
data/Mavenfile CHANGED
@@ -88,7 +88,7 @@ plugin :clean do
88
88
  end
89
89
 
90
90
  jar 'org.jruby:jruby-core', '1.7.20', :scope => :provided
91
- jar 'junit:junit', '4.11', :scope => :test
91
+ jar 'junit:junit', '[4.13.1,)', :scope => :test
92
92
 
93
93
  # 9.1.17.0 is Java 7 compatible (till supporting JRuby 1.7)
94
94
  # NOTE: to build on Java 11 - installing gems fails (due old jossl) with:
@@ -107,7 +107,7 @@ plugin :deploy, '2.8.1' do
107
107
  execute_goals( :deploy, :skip => false )
108
108
  end
109
109
 
110
- supported_bc_versions = %w{ 1.56 1.57 1.58 1.59 1.60 1.61 1.62 1.63 1.64 }
110
+ supported_bc_versions = %w{ 1.58 1.59 1.60 1.61 1.62 1.63 1.64 1.65 }
111
111
 
112
112
  default_bc_version = File.read File.expand_path('lib/jopenssl/version.rb', File.dirname(__FILE__))
113
113
  default_bc_version = default_bc_version[/BOUNCY_CASTLE_VERSION\s?=\s?'(.*?)'/, 1]
@@ -123,9 +123,8 @@ properties( 'jruby.plugins.version' => '1.1.8',
123
123
  'mavengem-wagon.version' => '1.0.3', # for polyglot-ruby
124
124
  # use this version of jruby for the jruby-maven-plugins
125
125
  'jruby.versions' => MVN_JRUBY_VERSION, 'jruby.version' => MVN_JRUBY_VERSION,
126
- # dump pom.xml as readonly when running 'rmvn'
127
- 'polyglot.dump.pom' => 'pom.xml',
128
- 'polyglot.dump.readonly' => true )
126
+ # dump pom.xml when running 'rmvn'
127
+ 'polyglot.dump.pom' => 'pom.xml', 'polyglot.dump.readonly' => false )
129
128
 
130
129
  # make sure we have the embedded jars in place before we run runit plugin
131
130
  plugin! :dependency do
@@ -152,20 +151,7 @@ invoker_run_options = {
152
151
  'runit.dir' => '${runit.dir}' }
153
152
  }
154
153
 
155
- jruby_1_7_versions = %w{ 1.7.20 1.7.22 1.7.23 1.7.24 1.7.25 1.7.26 1.7.27 }
156
-
157
- jruby_1_7_versions.each { |version|
158
- profile :id => "test-#{version}" do
159
- plugin :invoker, '1.8' do
160
- execute_goals( :install, :run, invoker_run_options )
161
- end
162
- properties 'jruby.versions' => version,
163
- 'jruby.modes' => '1.9,2.0',
164
- 'bc.versions' => supported_bc_versions.join(',')
165
- end
166
- }
167
-
168
- jruby_9_K_versions = %w{ 9.0.1.0 9.0.5.0 9.1.2.0 9.1.8.0 9.1.12.0 9.1.16.0 9.1.17.0 }
154
+ jruby_9_K_versions = %w{ 9.0.5.0 9.1.2.0 9.1.8.0 9.1.12.0 9.1.16.0 9.1.17.0 }
169
155
  jruby_9_K_versions += %w{ 9.2.0.0 9.2.5.0 9.2.6.0 9.2.7.0 9.2.8.0 9.2.9.0 }
170
156
 
171
157
  jruby_9_K_versions.each { |version|
data/Rakefile CHANGED
@@ -27,6 +27,10 @@ else
27
27
  RubyMaven.exec( 'package -Dmaven.test.skip=true' )
28
28
  end
29
29
  end
30
+ task :test_prepare do
31
+ RubyMaven.exec( 'prepare-package -Dmaven.test.skip=true' )
32
+ RubyMaven.exec( 'test-compile' ) # separate step due -Dmaven.test.skip=true
33
+ end
30
34
  end
31
35
 
32
36
  task :build do
@@ -1,6 +1,6 @@
1
1
  module JOpenSSL
2
- VERSION = '0.10.4'
3
- BOUNCY_CASTLE_VERSION = '1.62'
2
+ VERSION = '0.11.0'
3
+ BOUNCY_CASTLE_VERSION = '1.68'
4
4
  end
5
5
 
6
6
  Object.class_eval do
data/lib/jopenssl.jar CHANGED
Binary file
data/pom.xml CHANGED
@@ -6,12 +6,12 @@ DO NOT MODIFIY - GENERATED CODE
6
6
 
7
7
 
8
8
  -->
9
- <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
9
+ <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
10
10
  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
11
11
  <modelVersion>4.0.0</modelVersion>
12
12
  <groupId>rubygems</groupId>
13
13
  <artifactId>jruby-openssl</artifactId>
14
- <version>0.10.4</version>
14
+ <version>0.11.0</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 MODIFIY - GENERATED CODE
60
60
  </snapshotRepository>
61
61
  </distributionManagement>
62
62
  <properties>
63
- <bc.versions>1.62</bc.versions>
63
+ <bc.versions>1.68</bc.versions>
64
64
  <invoker.skip>${maven.test.skip}</invoker.skip>
65
65
  <invoker.test>${bc.versions}</invoker.test>
66
66
  <jruby.plugins.version>1.1.8</jruby.plugins.version>
@@ -70,45 +70,24 @@ DO NOT MODIFIY - GENERATED CODE
70
70
  <mavengem-wagon.version>1.0.3</mavengem-wagon.version>
71
71
  <mavengem.wagon.version>1.0.3</mavengem.wagon.version>
72
72
  <polyglot.dump.pom>pom.xml</polyglot.dump.pom>
73
- <polyglot.dump.readonly>true</polyglot.dump.readonly>
73
+ <polyglot.dump.readonly>false</polyglot.dump.readonly>
74
74
  <runit.dir>src/test/ruby/**/test_*.rb</runit.dir>
75
75
  </properties>
76
76
  <dependencies>
77
- <dependency>
78
- <groupId>rubygems</groupId>
79
- <artifactId>jar-dependencies</artifactId>
80
- <version>[0.1,0.99999]</version>
81
- <type>gem</type>
82
- <scope>test</scope>
83
- </dependency>
84
- <dependency>
85
- <groupId>rubygems</groupId>
86
- <artifactId>mocha</artifactId>
87
- <version>[1.4,2.0)</version>
88
- <type>gem</type>
89
- <scope>test</scope>
90
- </dependency>
91
- <dependency>
92
- <groupId>rubygems</groupId>
93
- <artifactId>ruby-maven</artifactId>
94
- <version>[3.0,3.99999]</version>
95
- <type>gem</type>
96
- <scope>test</scope>
97
- </dependency>
98
77
  <dependency>
99
78
  <groupId>org.bouncycastle</groupId>
100
79
  <artifactId>bcprov-jdk15on</artifactId>
101
- <version>1.62</version>
80
+ <version>1.68</version>
102
81
  </dependency>
103
82
  <dependency>
104
83
  <groupId>org.bouncycastle</groupId>
105
84
  <artifactId>bcpkix-jdk15on</artifactId>
106
- <version>1.62</version>
85
+ <version>1.68</version>
107
86
  </dependency>
108
87
  <dependency>
109
88
  <groupId>org.bouncycastle</groupId>
110
89
  <artifactId>bctls-jdk15on</artifactId>
111
- <version>1.62</version>
90
+ <version>1.68</version>
112
91
  </dependency>
113
92
  <dependency>
114
93
  <groupId>org.jruby</groupId>
@@ -119,7 +98,7 @@ DO NOT MODIFIY - GENERATED CODE
119
98
  <dependency>
120
99
  <groupId>junit</groupId>
121
100
  <artifactId>junit</artifactId>
122
- <version>4.11</version>
101
+ <version>[4.13.1,)</version>
123
102
  <scope>test</scope>
124
103
  </dependency>
125
104
  </dependencies>
@@ -399,311 +378,6 @@ DO NOT MODIFIY - GENERATED CODE
399
378
  </plugins>
400
379
  </build>
401
380
  </profile>
402
- <profile>
403
- <id>test-1.7.20</id>
404
- <build>
405
- <plugins>
406
- <plugin>
407
- <artifactId>maven-invoker-plugin</artifactId>
408
- <version>1.8</version>
409
- <executions>
410
- <execution>
411
- <id>tests-with-different-bc-versions</id>
412
- <goals>
413
- <goal>install</goal>
414
- <goal>run</goal>
415
- </goals>
416
- <configuration>
417
- <projectsDirectory>integration</projectsDirectory>
418
- <pomIncludes>
419
- <pomInclude>*/pom.xml</pomInclude>
420
- </pomIncludes>
421
- <streamLogs>true</streamLogs>
422
- <properties>
423
- <jruby.versions>${jruby.versions}</jruby.versions>
424
- <jruby.modes>${jruby.modes}</jruby.modes>
425
- <jruby.openssl.version>${project.version}</jruby.openssl.version>
426
- <bc.versions>${bc.versions}</bc.versions>
427
- <runit.dir>${runit.dir}</runit.dir>
428
- </properties>
429
- </configuration>
430
- </execution>
431
- </executions>
432
- </plugin>
433
- </plugins>
434
- </build>
435
- <properties>
436
- <bc.versions>1.56,1.57,1.58,1.59,1.60,1.61,1.62,1.63,1.64</bc.versions>
437
- <jruby.modes>1.9,2.0</jruby.modes>
438
- <jruby.versions>1.7.20</jruby.versions>
439
- </properties>
440
- </profile>
441
- <profile>
442
- <id>test-1.7.22</id>
443
- <build>
444
- <plugins>
445
- <plugin>
446
- <artifactId>maven-invoker-plugin</artifactId>
447
- <version>1.8</version>
448
- <executions>
449
- <execution>
450
- <goals>
451
- <goal>install</goal>
452
- <goal>run</goal>
453
- </goals>
454
- <configuration>
455
- <projectsDirectory>integration</projectsDirectory>
456
- <pomIncludes>
457
- <pomInclude>*/pom.xml</pomInclude>
458
- </pomIncludes>
459
- <streamLogs>true</streamLogs>
460
- <properties>
461
- <jruby.versions>${jruby.versions}</jruby.versions>
462
- <jruby.modes>${jruby.modes}</jruby.modes>
463
- <jruby.openssl.version>${project.version}</jruby.openssl.version>
464
- <bc.versions>${bc.versions}</bc.versions>
465
- <runit.dir>${runit.dir}</runit.dir>
466
- </properties>
467
- </configuration>
468
- </execution>
469
- </executions>
470
- </plugin>
471
- </plugins>
472
- </build>
473
- <properties>
474
- <bc.versions>1.56,1.57,1.58,1.59,1.60,1.61,1.62,1.63,1.64</bc.versions>
475
- <jruby.modes>1.9,2.0</jruby.modes>
476
- <jruby.versions>1.7.22</jruby.versions>
477
- </properties>
478
- </profile>
479
- <profile>
480
- <id>test-1.7.23</id>
481
- <build>
482
- <plugins>
483
- <plugin>
484
- <artifactId>maven-invoker-plugin</artifactId>
485
- <version>1.8</version>
486
- <executions>
487
- <execution>
488
- <goals>
489
- <goal>install</goal>
490
- <goal>run</goal>
491
- </goals>
492
- <configuration>
493
- <projectsDirectory>integration</projectsDirectory>
494
- <pomIncludes>
495
- <pomInclude>*/pom.xml</pomInclude>
496
- </pomIncludes>
497
- <streamLogs>true</streamLogs>
498
- <properties>
499
- <jruby.versions>${jruby.versions}</jruby.versions>
500
- <jruby.modes>${jruby.modes}</jruby.modes>
501
- <jruby.openssl.version>${project.version}</jruby.openssl.version>
502
- <bc.versions>${bc.versions}</bc.versions>
503
- <runit.dir>${runit.dir}</runit.dir>
504
- </properties>
505
- </configuration>
506
- </execution>
507
- </executions>
508
- </plugin>
509
- </plugins>
510
- </build>
511
- <properties>
512
- <bc.versions>1.56,1.57,1.58,1.59,1.60,1.61,1.62,1.63,1.64</bc.versions>
513
- <jruby.modes>1.9,2.0</jruby.modes>
514
- <jruby.versions>1.7.23</jruby.versions>
515
- </properties>
516
- </profile>
517
- <profile>
518
- <id>test-1.7.24</id>
519
- <build>
520
- <plugins>
521
- <plugin>
522
- <artifactId>maven-invoker-plugin</artifactId>
523
- <version>1.8</version>
524
- <executions>
525
- <execution>
526
- <goals>
527
- <goal>install</goal>
528
- <goal>run</goal>
529
- </goals>
530
- <configuration>
531
- <projectsDirectory>integration</projectsDirectory>
532
- <pomIncludes>
533
- <pomInclude>*/pom.xml</pomInclude>
534
- </pomIncludes>
535
- <streamLogs>true</streamLogs>
536
- <properties>
537
- <jruby.versions>${jruby.versions}</jruby.versions>
538
- <jruby.modes>${jruby.modes}</jruby.modes>
539
- <jruby.openssl.version>${project.version}</jruby.openssl.version>
540
- <bc.versions>${bc.versions}</bc.versions>
541
- <runit.dir>${runit.dir}</runit.dir>
542
- </properties>
543
- </configuration>
544
- </execution>
545
- </executions>
546
- </plugin>
547
- </plugins>
548
- </build>
549
- <properties>
550
- <bc.versions>1.56,1.57,1.58,1.59,1.60,1.61,1.62,1.63,1.64</bc.versions>
551
- <jruby.modes>1.9,2.0</jruby.modes>
552
- <jruby.versions>1.7.24</jruby.versions>
553
- </properties>
554
- </profile>
555
- <profile>
556
- <id>test-1.7.25</id>
557
- <build>
558
- <plugins>
559
- <plugin>
560
- <artifactId>maven-invoker-plugin</artifactId>
561
- <version>1.8</version>
562
- <executions>
563
- <execution>
564
- <goals>
565
- <goal>install</goal>
566
- <goal>run</goal>
567
- </goals>
568
- <configuration>
569
- <projectsDirectory>integration</projectsDirectory>
570
- <pomIncludes>
571
- <pomInclude>*/pom.xml</pomInclude>
572
- </pomIncludes>
573
- <streamLogs>true</streamLogs>
574
- <properties>
575
- <jruby.versions>${jruby.versions}</jruby.versions>
576
- <jruby.modes>${jruby.modes}</jruby.modes>
577
- <jruby.openssl.version>${project.version}</jruby.openssl.version>
578
- <bc.versions>${bc.versions}</bc.versions>
579
- <runit.dir>${runit.dir}</runit.dir>
580
- </properties>
581
- </configuration>
582
- </execution>
583
- </executions>
584
- </plugin>
585
- </plugins>
586
- </build>
587
- <properties>
588
- <bc.versions>1.56,1.57,1.58,1.59,1.60,1.61,1.62,1.63,1.64</bc.versions>
589
- <jruby.modes>1.9,2.0</jruby.modes>
590
- <jruby.versions>1.7.25</jruby.versions>
591
- </properties>
592
- </profile>
593
- <profile>
594
- <id>test-1.7.26</id>
595
- <build>
596
- <plugins>
597
- <plugin>
598
- <artifactId>maven-invoker-plugin</artifactId>
599
- <version>1.8</version>
600
- <executions>
601
- <execution>
602
- <goals>
603
- <goal>install</goal>
604
- <goal>run</goal>
605
- </goals>
606
- <configuration>
607
- <projectsDirectory>integration</projectsDirectory>
608
- <pomIncludes>
609
- <pomInclude>*/pom.xml</pomInclude>
610
- </pomIncludes>
611
- <streamLogs>true</streamLogs>
612
- <properties>
613
- <jruby.versions>${jruby.versions}</jruby.versions>
614
- <jruby.modes>${jruby.modes}</jruby.modes>
615
- <jruby.openssl.version>${project.version}</jruby.openssl.version>
616
- <bc.versions>${bc.versions}</bc.versions>
617
- <runit.dir>${runit.dir}</runit.dir>
618
- </properties>
619
- </configuration>
620
- </execution>
621
- </executions>
622
- </plugin>
623
- </plugins>
624
- </build>
625
- <properties>
626
- <bc.versions>1.56,1.57,1.58,1.59,1.60,1.61,1.62,1.63,1.64</bc.versions>
627
- <jruby.modes>1.9,2.0</jruby.modes>
628
- <jruby.versions>1.7.26</jruby.versions>
629
- </properties>
630
- </profile>
631
- <profile>
632
- <id>test-1.7.27</id>
633
- <build>
634
- <plugins>
635
- <plugin>
636
- <artifactId>maven-invoker-plugin</artifactId>
637
- <version>1.8</version>
638
- <executions>
639
- <execution>
640
- <goals>
641
- <goal>install</goal>
642
- <goal>run</goal>
643
- </goals>
644
- <configuration>
645
- <projectsDirectory>integration</projectsDirectory>
646
- <pomIncludes>
647
- <pomInclude>*/pom.xml</pomInclude>
648
- </pomIncludes>
649
- <streamLogs>true</streamLogs>
650
- <properties>
651
- <jruby.versions>${jruby.versions}</jruby.versions>
652
- <jruby.modes>${jruby.modes}</jruby.modes>
653
- <jruby.openssl.version>${project.version}</jruby.openssl.version>
654
- <bc.versions>${bc.versions}</bc.versions>
655
- <runit.dir>${runit.dir}</runit.dir>
656
- </properties>
657
- </configuration>
658
- </execution>
659
- </executions>
660
- </plugin>
661
- </plugins>
662
- </build>
663
- <properties>
664
- <bc.versions>1.56,1.57,1.58,1.59,1.60,1.61,1.62,1.63,1.64</bc.versions>
665
- <jruby.modes>1.9,2.0</jruby.modes>
666
- <jruby.versions>1.7.27</jruby.versions>
667
- </properties>
668
- </profile>
669
- <profile>
670
- <id>test-9.0.1.0</id>
671
- <build>
672
- <plugins>
673
- <plugin>
674
- <artifactId>maven-invoker-plugin</artifactId>
675
- <version>1.8</version>
676
- <executions>
677
- <execution>
678
- <goals>
679
- <goal>install</goal>
680
- <goal>run</goal>
681
- </goals>
682
- <configuration>
683
- <projectsDirectory>integration</projectsDirectory>
684
- <pomIncludes>
685
- <pomInclude>*/pom.xml</pomInclude>
686
- </pomIncludes>
687
- <streamLogs>true</streamLogs>
688
- <properties>
689
- <jruby.versions>${jruby.versions}</jruby.versions>
690
- <jruby.modes>${jruby.modes}</jruby.modes>
691
- <jruby.openssl.version>${project.version}</jruby.openssl.version>
692
- <bc.versions>${bc.versions}</bc.versions>
693
- <runit.dir>${runit.dir}</runit.dir>
694
- </properties>
695
- </configuration>
696
- </execution>
697
- </executions>
698
- </plugin>
699
- </plugins>
700
- </build>
701
- <properties>
702
- <bc.versions>1.56,1.57,1.58,1.59,1.60,1.61,1.62,1.63,1.64</bc.versions>
703
- <jruby.version>9.0.1.0</jruby.version>
704
- <jruby.versions>9.0.1.0</jruby.versions>
705
- </properties>
706
- </profile>
707
381
  <profile>
708
382
  <id>test-9.0.5.0</id>
709
383
  <build>
@@ -713,6 +387,7 @@ DO NOT MODIFIY - GENERATED CODE
713
387
  <version>1.8</version>
714
388
  <executions>
715
389
  <execution>
390
+ <id>tests-with-different-bc-versions</id>
716
391
  <goals>
717
392
  <goal>install</goal>
718
393
  <goal>run</goal>
@@ -737,7 +412,7 @@ DO NOT MODIFIY - GENERATED CODE
737
412
  </plugins>
738
413
  </build>
739
414
  <properties>
740
- <bc.versions>1.56,1.57,1.58,1.59,1.60,1.61,1.62,1.63,1.64</bc.versions>
415
+ <bc.versions>1.58,1.59,1.60,1.61,1.62,1.63,1.64,1.65</bc.versions>
741
416
  <jruby.version>9.0.5.0</jruby.version>
742
417
  <jruby.versions>9.0.5.0</jruby.versions>
743
418
  </properties>
@@ -775,7 +450,7 @@ DO NOT MODIFIY - GENERATED CODE
775
450
  </plugins>
776
451
  </build>
777
452
  <properties>
778
- <bc.versions>1.56,1.57,1.58,1.59,1.60,1.61,1.62,1.63,1.64</bc.versions>
453
+ <bc.versions>1.58,1.59,1.60,1.61,1.62,1.63,1.64,1.65</bc.versions>
779
454
  <jruby.version>9.1.2.0</jruby.version>
780
455
  <jruby.versions>9.1.2.0</jruby.versions>
781
456
  </properties>
@@ -813,7 +488,7 @@ DO NOT MODIFIY - GENERATED CODE
813
488
  </plugins>
814
489
  </build>
815
490
  <properties>
816
- <bc.versions>1.56,1.57,1.58,1.59,1.60,1.61,1.62,1.63,1.64</bc.versions>
491
+ <bc.versions>1.58,1.59,1.60,1.61,1.62,1.63,1.64,1.65</bc.versions>
817
492
  <jruby.version>9.1.8.0</jruby.version>
818
493
  <jruby.versions>9.1.8.0</jruby.versions>
819
494
  </properties>
@@ -851,7 +526,7 @@ DO NOT MODIFIY - GENERATED CODE
851
526
  </plugins>
852
527
  </build>
853
528
  <properties>
854
- <bc.versions>1.56,1.57,1.58,1.59,1.60,1.61,1.62,1.63,1.64</bc.versions>
529
+ <bc.versions>1.58,1.59,1.60,1.61,1.62,1.63,1.64,1.65</bc.versions>
855
530
  <jruby.version>9.1.12.0</jruby.version>
856
531
  <jruby.versions>9.1.12.0</jruby.versions>
857
532
  </properties>
@@ -889,7 +564,7 @@ DO NOT MODIFIY - GENERATED CODE
889
564
  </plugins>
890
565
  </build>
891
566
  <properties>
892
- <bc.versions>1.56,1.57,1.58,1.59,1.60,1.61,1.62,1.63,1.64</bc.versions>
567
+ <bc.versions>1.58,1.59,1.60,1.61,1.62,1.63,1.64,1.65</bc.versions>
893
568
  <jruby.version>9.1.16.0</jruby.version>
894
569
  <jruby.versions>9.1.16.0</jruby.versions>
895
570
  </properties>
@@ -927,7 +602,7 @@ DO NOT MODIFIY - GENERATED CODE
927
602
  </plugins>
928
603
  </build>
929
604
  <properties>
930
- <bc.versions>1.56,1.57,1.58,1.59,1.60,1.61,1.62,1.63,1.64</bc.versions>
605
+ <bc.versions>1.58,1.59,1.60,1.61,1.62,1.63,1.64,1.65</bc.versions>
931
606
  <jruby.version>9.1.17.0</jruby.version>
932
607
  <jruby.versions>9.1.17.0</jruby.versions>
933
608
  </properties>
@@ -965,7 +640,7 @@ DO NOT MODIFIY - GENERATED CODE
965
640
  </plugins>
966
641
  </build>
967
642
  <properties>
968
- <bc.versions>1.56,1.57,1.58,1.59,1.60,1.61,1.62,1.63,1.64</bc.versions>
643
+ <bc.versions>1.58,1.59,1.60,1.61,1.62,1.63,1.64,1.65</bc.versions>
969
644
  <jruby.version>9.2.0.0</jruby.version>
970
645
  <jruby.versions>9.2.0.0</jruby.versions>
971
646
  </properties>
@@ -1003,7 +678,7 @@ DO NOT MODIFIY - GENERATED CODE
1003
678
  </plugins>
1004
679
  </build>
1005
680
  <properties>
1006
- <bc.versions>1.56,1.57,1.58,1.59,1.60,1.61,1.62,1.63,1.64</bc.versions>
681
+ <bc.versions>1.58,1.59,1.60,1.61,1.62,1.63,1.64,1.65</bc.versions>
1007
682
  <jruby.version>9.2.5.0</jruby.version>
1008
683
  <jruby.versions>9.2.5.0</jruby.versions>
1009
684
  </properties>
@@ -1041,7 +716,7 @@ DO NOT MODIFIY - GENERATED CODE
1041
716
  </plugins>
1042
717
  </build>
1043
718
  <properties>
1044
- <bc.versions>1.56,1.57,1.58,1.59,1.60,1.61,1.62,1.63,1.64</bc.versions>
719
+ <bc.versions>1.58,1.59,1.60,1.61,1.62,1.63,1.64,1.65</bc.versions>
1045
720
  <jruby.version>9.2.6.0</jruby.version>
1046
721
  <jruby.versions>9.2.6.0</jruby.versions>
1047
722
  </properties>
@@ -1079,7 +754,7 @@ DO NOT MODIFIY - GENERATED CODE
1079
754
  </plugins>
1080
755
  </build>
1081
756
  <properties>
1082
- <bc.versions>1.56,1.57,1.58,1.59,1.60,1.61,1.62,1.63,1.64</bc.versions>
757
+ <bc.versions>1.58,1.59,1.60,1.61,1.62,1.63,1.64,1.65</bc.versions>
1083
758
  <jruby.version>9.2.7.0</jruby.version>
1084
759
  <jruby.versions>9.2.7.0</jruby.versions>
1085
760
  </properties>
@@ -1117,7 +792,7 @@ DO NOT MODIFIY - GENERATED CODE
1117
792
  </plugins>
1118
793
  </build>
1119
794
  <properties>
1120
- <bc.versions>1.56,1.57,1.58,1.59,1.60,1.61,1.62,1.63,1.64</bc.versions>
795
+ <bc.versions>1.58,1.59,1.60,1.61,1.62,1.63,1.64,1.65</bc.versions>
1121
796
  <jruby.version>9.2.8.0</jruby.version>
1122
797
  <jruby.versions>9.2.8.0</jruby.versions>
1123
798
  </properties>
@@ -1155,7 +830,7 @@ DO NOT MODIFIY - GENERATED CODE
1155
830
  </plugins>
1156
831
  </build>
1157
832
  <properties>
1158
- <bc.versions>1.56,1.57,1.58,1.59,1.60,1.61,1.62,1.63,1.64</bc.versions>
833
+ <bc.versions>1.58,1.59,1.60,1.61,1.62,1.63,1.64,1.65</bc.versions>
1159
834
  <jruby.version>9.2.9.0</jruby.version>
1160
835
  <jruby.versions>9.2.9.0</jruby.versions>
1161
836
  </properties>
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.10.4
4
+ version: 0.11.0
5
5
  platform: java
6
6
  authors:
7
7
  - Karol Bucek
@@ -10,56 +10,8 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2020-02-18 00:00:00.000000000 Z
14
- dependencies:
15
- - !ruby/object:Gem::Dependency
16
- requirement: !ruby/object:Gem::Requirement
17
- requirements:
18
- - - "~>"
19
- - !ruby/object:Gem::Version
20
- version: '0.1'
21
- name: jar-dependencies
22
- prerelease: false
23
- type: :development
24
- version_requirements: !ruby/object:Gem::Requirement
25
- requirements:
26
- - - "~>"
27
- - !ruby/object:Gem::Version
28
- version: '0.1'
29
- - !ruby/object:Gem::Dependency
30
- requirement: !ruby/object:Gem::Requirement
31
- requirements:
32
- - - "~>"
33
- - !ruby/object:Gem::Version
34
- version: '1.4'
35
- - - "<"
36
- - !ruby/object:Gem::Version
37
- version: '2.0'
38
- name: mocha
39
- prerelease: false
40
- type: :development
41
- version_requirements: !ruby/object:Gem::Requirement
42
- requirements:
43
- - - "~>"
44
- - !ruby/object:Gem::Version
45
- version: '1.4'
46
- - - "<"
47
- - !ruby/object:Gem::Version
48
- version: '2.0'
49
- - !ruby/object:Gem::Dependency
50
- requirement: !ruby/object:Gem::Requirement
51
- requirements:
52
- - - "~>"
53
- - !ruby/object:Gem::Version
54
- version: '3.0'
55
- name: ruby-maven
56
- prerelease: false
57
- type: :development
58
- version_requirements: !ruby/object:Gem::Requirement
59
- requirements:
60
- - - "~>"
61
- - !ruby/object:Gem::Version
62
- version: '3.0'
13
+ date: 2021-10-25 00:00:00.000000000 Z
14
+ dependencies: []
63
15
  description: JRuby-OpenSSL is an add-on gem for JRuby that emulates the Ruby OpenSSL native library.
64
16
  email: self+jruby-openssl@kares.org
65
17
  executables: []
@@ -124,9 +76,9 @@ files:
124
76
  - lib/openssl/ssl.rb
125
77
  - lib/openssl/x509-internal.rb
126
78
  - lib/openssl/x509.rb
127
- - lib/org/bouncycastle/bcpkix-jdk15on/1.62/bcpkix-jdk15on-1.62.jar
128
- - lib/org/bouncycastle/bcprov-jdk15on/1.62/bcprov-jdk15on-1.62.jar
129
- - lib/org/bouncycastle/bctls-jdk15on/1.62/bctls-jdk15on-1.62.jar
79
+ - lib/org/bouncycastle/bcpkix-jdk15on/1.68/bcpkix-jdk15on-1.68.jar
80
+ - lib/org/bouncycastle/bcprov-jdk15on/1.68/bcprov-jdk15on-1.68.jar
81
+ - lib/org/bouncycastle/bctls-jdk15on/1.68/bctls-jdk15on-1.68.jar
130
82
  - pom.xml
131
83
  homepage: https://github.com/jruby/jruby-openssl
132
84
  licenses:
@@ -149,9 +101,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
149
101
  - !ruby/object:Gem::Version
150
102
  version: 2.4.8
151
103
  requirements:
152
- - jar org.bouncycastle:bcprov-jdk15on, 1.62
153
- - jar org.bouncycastle:bcpkix-jdk15on, 1.62
154
- - jar org.bouncycastle:bctls-jdk15on, 1.62
104
+ - jar org.bouncycastle:bcprov-jdk15on, 1.68
105
+ - jar org.bouncycastle:bcpkix-jdk15on, 1.68
106
+ - jar org.bouncycastle:bctls-jdk15on, 1.68
155
107
  rubyforge_project:
156
108
  rubygems_version: 2.6.14.1
157
109
  signing_key: