jruby-openssl 0.15.6-java → 0.16.0-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 +31 -0
- data/Mavenfile +17 -11
- data/README.md +20 -23
- data/Rakefile +2 -2
- data/lib/jopenssl/version.rb +2 -2
- data/lib/jopenssl.jar +0 -0
- data/lib/org/bouncycastle/bcpkix-jdk18on/{1.83/bcpkix-jdk18on-1.83.jar → 1.84/bcpkix-jdk18on-1.84.jar} +0 -0
- data/lib/org/bouncycastle/bcprov-jdk18on/{1.83/bcprov-jdk18on-1.83.jar → 1.84/bcprov-jdk18on-1.84.jar} +0 -0
- data/lib/org/bouncycastle/bctls-jdk18on/{1.83/bctls-jdk18on-1.83.jar → 1.84/bctls-jdk18on-1.84.jar} +0 -0
- data/lib/org/bouncycastle/bcutil-jdk18on/{1.83/bcutil-jdk18on-1.83.jar → 1.84/bcutil-jdk18on-1.84.jar} +0 -0
- data/pom.xml +42 -31
- metadata +10 -10
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 59707dcf352c6c902a707bfec1d0dfac1ba7be49a9d50f7ea5c9ba8afbad8052
|
|
4
|
+
data.tar.gz: 50261d4fca0b69f9b289df3165407e4c465acb6f33ed50f9bd459e4a0f6191fa
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4be4fc25cf41e7601d34a200c8d7d018516690dce35fb08fd189b1032fe7cfd9627318bce391bc5c9b03d462403004ea69c49a1059f69053f2689334daf4bf31
|
|
7
|
+
data.tar.gz: d84ee0c194473fab1ca2665735af092cd80520096ae03c6e0dab2d3cc502f52ae6d58573598809bfc4858e478456463a608cc93cd4bbef4a65fcffa561483776
|
data/History.md
CHANGED
|
@@ -1,3 +1,34 @@
|
|
|
1
|
+
## 0.16.0
|
|
2
|
+
|
|
3
|
+
Upgrading Bouncy Castle to version 1.84.
|
|
4
|
+
SSL non-blocking I/O improvements.
|
|
5
|
+
|
|
6
|
+
- [feat] implement `OpenSSL::ASN1.traverse` helper
|
|
7
|
+
- [feat] remove SHA1PRNG fallback: use default `SecureRandom`
|
|
8
|
+
- [fix] SSL write loss on non-blocking partial flush (#242)
|
|
9
|
+
- [fix] `read_nonblock(exception: false)` raising `SSLErrorWaitReadable`
|
|
10
|
+
- [fix] `X509::Certificate#dup` dropping all extensions (#356)
|
|
11
|
+
- [fix] format `authorityInfoAccess` extension values (#210)
|
|
12
|
+
- [fix] coerce `HMAC#update` input as `String`
|
|
13
|
+
- [compat] undefine `clone` on `Store` and `StoreContext`
|
|
14
|
+
- [refactor] use constant-time comparison in PKCS7 and SimpleSecretKey
|
|
15
|
+
- [refactor] overflow protection in `MemBIO` buffer reallocation
|
|
16
|
+
- [deps] upgrade BC to version 1.84
|
|
17
|
+
|
|
18
|
+
## 0.15.7
|
|
19
|
+
|
|
20
|
+
* [fix] handle CRL with optional nextUpdate absent
|
|
21
|
+
* [compat] handle nil dates in `Certificate#sign`
|
|
22
|
+
* [fix] null guard for public key in `PKey#toJava`
|
|
23
|
+
* [fix] missing null guard in `SSLSocket#alpn_protocol`
|
|
24
|
+
* [fix] missing throw in `PKey::EC::Point#add`
|
|
25
|
+
* [fix] `DH#params` returned pub_key and priv_key swapped
|
|
26
|
+
* [fix] compat with JRuby < 9.2.10 after API change (#348)
|
|
27
|
+
* [fix] `Cipher#reset` when key not set (jruby/jruby#5776)
|
|
28
|
+
* [fix] encode Netscape IA5String extensions correctly (#349)
|
|
29
|
+
* [fix] `Store#add_file` raises when no certificate or CRL (#285)
|
|
30
|
+
* [fix] PSS auto salt-length verify failed due leading zeros
|
|
31
|
+
|
|
1
32
|
## 0.15.6
|
|
2
33
|
|
|
3
34
|
Upgrading Bouncy Castle to version 1.83
|
data/Mavenfile
CHANGED
|
@@ -10,7 +10,7 @@ end
|
|
|
10
10
|
java_target = '1.8'
|
|
11
11
|
gen_sources = '${basedir}/target/generated-sources' # hard-coded in AnnotationBinder
|
|
12
12
|
|
|
13
|
-
plugin( 'org.codehaus.mojo:exec-maven-plugin', '
|
|
13
|
+
plugin( 'org.codehaus.mojo:exec-maven-plugin', '3.5.0' ) do
|
|
14
14
|
|
|
15
15
|
=begin
|
|
16
16
|
invoker_main = '-Djruby.bytecode.version=${compiler.target}'
|
|
@@ -41,7 +41,7 @@ plugin( 'org.codehaus.mojo:exec-maven-plugin', '1.3.2' ) do
|
|
|
41
41
|
'${project.build.outputDirectory}' ]
|
|
42
42
|
end
|
|
43
43
|
|
|
44
|
-
plugin( 'org.codehaus.mojo:build-helper-maven-plugin', '1
|
|
44
|
+
plugin( 'org.codehaus.mojo:build-helper-maven-plugin', '3.6.1' ) do
|
|
45
45
|
execute_goal 'add-source', :phase => 'process-classes', :sources => [ gen_sources ]
|
|
46
46
|
end
|
|
47
47
|
|
|
@@ -56,7 +56,7 @@ compiler_configuration = {
|
|
|
56
56
|
}
|
|
57
57
|
compiler_configuration.delete(:release) if ENV_JAVA['java.specification.version'] == '1.8'
|
|
58
58
|
|
|
59
|
-
plugin( :compiler, '3.
|
|
59
|
+
plugin( :compiler, '3.15.0', compiler_configuration) do
|
|
60
60
|
|
|
61
61
|
#execute_goal :compile, :id => 'annotation-binder', :phase => 'compile',
|
|
62
62
|
# :generatedSourcesDirectory => gen_sources, #:outputDirectory => gen_sources,
|
|
@@ -82,10 +82,15 @@ plugin :clean do
|
|
|
82
82
|
'failOnError' => 'false' )
|
|
83
83
|
end
|
|
84
84
|
|
|
85
|
-
|
|
85
|
+
jruby_compile_compat = '9.2.1.0'
|
|
86
|
+
jar 'org.jruby:jruby-core', jruby_compile_compat, :scope => :provided
|
|
86
87
|
# for invoker generated classes we need to add javax.annotation when on Java > 8
|
|
87
88
|
jar 'javax.annotation:javax.annotation-api', '1.3.1', :scope => :compile
|
|
88
|
-
jar 'junit:junit', '
|
|
89
|
+
jar 'org.junit.jupiter:junit-jupiter', '5.11.4', :scope => :test
|
|
90
|
+
# a test dependency to provide digest and other stdlib bits, needed when loading OpenSSL in Java unit tests
|
|
91
|
+
jar 'org.jruby:jruby-stdlib', jruby_compile_compat, :scope => :test
|
|
92
|
+
|
|
93
|
+
plugin :surefire, '3.5.5'
|
|
89
94
|
|
|
90
95
|
# NOTE: to build on Java 11 - installing gems fails (due old jossl) with:
|
|
91
96
|
# load error: jopenssl/load -- java.lang.StringIndexOutOfBoundsException
|
|
@@ -98,24 +103,25 @@ jruby_plugin! :gem do
|
|
|
98
103
|
end
|
|
99
104
|
|
|
100
105
|
# we want to have the snapshots on oss.sonatype.org and the released gems on maven central
|
|
101
|
-
plugin :deploy, '
|
|
106
|
+
plugin :deploy, '3.1.4' do
|
|
102
107
|
execute_goals( :deploy, :skip => false )
|
|
103
108
|
end
|
|
104
109
|
|
|
105
|
-
supported_bc_versions = %w{ 1.78 1.79 1.80 1.81 1.82 1.83 }
|
|
110
|
+
supported_bc_versions = %w{ 1.78 1.79 1.80 1.81 1.82 1.83 1.84 }
|
|
106
111
|
|
|
107
112
|
default_bc_version = File.read File.expand_path('lib/jopenssl/version.rb', File.dirname(__FILE__))
|
|
108
113
|
default_bc_version = default_bc_version[/BOUNCY_CASTLE_VERSION\s?=\s?'(.*?)'/, 1]
|
|
109
114
|
|
|
110
|
-
properties( 'jruby.plugins.version' => '3.0.
|
|
115
|
+
properties( 'jruby.plugins.version' => '3.0.6',
|
|
111
116
|
'jruby.switches' => '-W0', # https://github.com/torquebox/jruby-maven-plugins/issues/94
|
|
112
117
|
'bc.versions' => default_bc_version,
|
|
113
118
|
'invoker.test' => '${bc.versions}',
|
|
114
119
|
# allow to skip all tests with -Dmaven.test.skip
|
|
115
120
|
'invoker.skip' => '${maven.test.skip}',
|
|
121
|
+
'skipRunit' => 'true',
|
|
116
122
|
'runit.dir' => 'src/test/ruby/**/test_*.rb',
|
|
117
123
|
'mavengem.wagon.version' => '2.0.2', # for jruby plugin
|
|
118
|
-
'mavengem-wagon.version' => '
|
|
124
|
+
'mavengem-wagon.version' => '3.0.0', # for polyglot-ruby
|
|
119
125
|
# use this version of jruby for the jruby-maven-plugins
|
|
120
126
|
'jruby.versions' => MVN_JRUBY_VERSION, 'jruby.version' => MVN_JRUBY_VERSION,
|
|
121
127
|
# dump pom.xml when running 'rmvn'
|
|
@@ -154,7 +160,7 @@ jruby_versions += %w{ 10.0.2.0 }
|
|
|
154
160
|
|
|
155
161
|
jruby_versions.each do |version|
|
|
156
162
|
profile :id => "test-#{version}" do
|
|
157
|
-
plugin :invoker, '
|
|
163
|
+
plugin :invoker, '3.8.1' do
|
|
158
164
|
execute_goals( :install, :run, invoker_run_options )
|
|
159
165
|
end
|
|
160
166
|
properties 'jruby.version' => version,
|
|
@@ -164,7 +170,7 @@ jruby_versions.each do |version|
|
|
|
164
170
|
end
|
|
165
171
|
|
|
166
172
|
profile :id => 'release' do
|
|
167
|
-
plugin :gpg, '1.
|
|
173
|
+
plugin :gpg, '3.1.0' do
|
|
168
174
|
execute_goal :sign, :phase => :verify
|
|
169
175
|
end
|
|
170
176
|
end
|
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,45 @@ 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-
|
|
32
|
-
|
|
33
|
-
NOTE: backwards JRuby compatibility was not handled for versions <= **0.9.6**
|
|
31
|
+
| ~>0.15.x | 9.2.x-10.0.x | Java 8-25 | 1.78-1.83 |
|
|
32
|
+
| ~>0.16.x | 9.3.x-10.0.x | Java 8-25 | 1.83-1.84 |
|
|
34
33
|
|
|
35
34
|
## Security
|
|
36
35
|
|
|
37
|
-
JRuby-OpenSSL is an essential part of [JRuby](https://www.jruby.org/), please report security vulnerabilities to
|
|
36
|
+
JRuby-OpenSSL is an essential part of [JRuby](https://www.jruby.org/), please report security vulnerabilities to
|
|
38
37
|
`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
38
|
|
|
43
|
-
|
|
39
|
+
Please note that most OpenSSL vulnerabilities do not affect JRuby since it's not using
|
|
40
|
+
any of OpenSSL's C code, only Ruby parts (*.rb) are the same as in MRI's OpenSSL library.
|
|
44
41
|
|
|
45
|
-
|
|
42
|
+
## Testing
|
|
46
43
|
|
|
47
44
|
rake jar:all # creates pom.xml and generates jopenssl.jar under lib
|
|
48
45
|
mvn test
|
|
49
46
|
|
|
50
|
-
will run (
|
|
51
|
-
|
|
47
|
+
This will run (JUnit as well as Ruby) tests against the default JRuby version.
|
|
48
|
+
To pick a different JRuby version:
|
|
52
49
|
|
|
53
|
-
mvn test -Djruby.versions=9.
|
|
50
|
+
mvn test -Djruby.versions=9.4.14.0
|
|
54
51
|
|
|
55
|
-
|
|
56
|
-
tests run for each
|
|
52
|
+
For running integration tests the gem will be installed first and the same
|
|
53
|
+
tests run for each supported Bouncy Castle version (see [listing][3]):
|
|
57
54
|
|
|
58
|
-
mvn verify -P test-9.
|
|
55
|
+
mvn verify -P test-9.4.14.0,test-9.2.21.0
|
|
59
56
|
|
|
60
|
-
|
|
57
|
+
Or pick a specific Bouncy Castle version:
|
|
61
58
|
|
|
62
|
-
mvn verify -P test-9.
|
|
59
|
+
mvn verify -P test-9.4.14.0 -Dbc.versions=1.78
|
|
63
60
|
|
|
64
|
-
NOTE: you can pick any
|
|
61
|
+
NOTE: you can pick any JRuby version which is on [Maven Central][4] or on [ci.jruby][5]
|
|
65
62
|
|
|
66
63
|
## License
|
|
67
64
|
|
|
68
|
-
(c) 2009-
|
|
65
|
+
(c) 2009-2026 JRuby distributed under EPL 1.0/GPL 2.0/LGPL 2.1
|
|
69
66
|
|
|
70
67
|
[0]: https://github.com/jruby/jruby-openssl/security
|
|
71
68
|
[1]: https://github.com/jruby/jruby/wiki/MailingLists
|
|
72
69
|
[2]: https://github.com/jruby/jruby-openssl/issues/new
|
|
73
70
|
[3]: https://github.com/jruby/jruby-openssl/tree/master/integration
|
|
74
|
-
[4]:
|
|
71
|
+
[4]: https://repo1.maven.org/maven2/org/jruby/
|
|
75
72
|
[5]: https://www.jruby.org/nightly
|
data/Rakefile
CHANGED
|
@@ -34,7 +34,7 @@ Rake::TestTask.new do |task|
|
|
|
34
34
|
test_files = FileList['src/test/ruby/**/test*.rb'].to_a
|
|
35
35
|
task.test_files = test_files.map { |path| path.sub('src/test/ruby/', '') }
|
|
36
36
|
task.verbose = true
|
|
37
|
-
task.loader =
|
|
37
|
+
task.loader = "ARGV.each { |f| require f unless f.start_with?('-') }"
|
|
38
38
|
task.ruby_opts = [ '-C', 'src/test/ruby', '-rbundler/setup' ]
|
|
39
39
|
end
|
|
40
40
|
task :test => 'lib/jopenssl.jar'
|
|
@@ -49,7 +49,7 @@ namespace :integration do
|
|
|
49
49
|
unless File.exist?(File.join(it_path, 'Gemfile.lock'))
|
|
50
50
|
raise "bundle not installed, run `rake integration:install'"
|
|
51
51
|
end
|
|
52
|
-
loader = "ARGV.each { |f| require f }"
|
|
52
|
+
loader = "ARGV.each { |f| require f unless f.start_with?('-') }"
|
|
53
53
|
lib = [ File.expand_path('../lib', __FILE__), it_path ]
|
|
54
54
|
test_files = FileList['src/test/integration/*_test.rb'].map { |path| path.sub('src/test/integration/', '') }
|
|
55
55
|
ruby "-I#{lib.join(':')} -C src/test/integration -e \"#{loader}\" #{test_files.map { |f| "\"#{f}\"" }.join(' ')}"
|
data/lib/jopenssl/version.rb
CHANGED
data/lib/jopenssl.jar
CHANGED
|
Binary file
|
|
Binary file
|
|
Binary file
|
data/lib/org/bouncycastle/bctls-jdk18on/{1.83/bctls-jdk18on-1.83.jar → 1.84/bctls-jdk18on-1.84.jar}
RENAMED
|
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.
|
|
14
|
+
<version>0.16.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,44 +60,45 @@ DO NOT MODIFY - GENERATED CODE
|
|
|
60
60
|
</snapshotRepository>
|
|
61
61
|
</distributionManagement>
|
|
62
62
|
<properties>
|
|
63
|
-
<bc.versions>1.
|
|
63
|
+
<bc.versions>1.84</bc.versions>
|
|
64
64
|
<invoker.skip>${maven.test.skip}</invoker.skip>
|
|
65
65
|
<invoker.test>${bc.versions}</invoker.test>
|
|
66
|
-
<jruby.plugins.version>3.0.
|
|
66
|
+
<jruby.plugins.version>3.0.6</jruby.plugins.version>
|
|
67
67
|
<jruby.switches>-W0</jruby.switches>
|
|
68
68
|
<jruby.version>9.2.19.0</jruby.version>
|
|
69
69
|
<jruby.versions>9.2.19.0</jruby.versions>
|
|
70
|
-
<mavengem-wagon.version>
|
|
70
|
+
<mavengem-wagon.version>3.0.0</mavengem-wagon.version>
|
|
71
71
|
<mavengem.wagon.version>2.0.2</mavengem.wagon.version>
|
|
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.84</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.84</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.84</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.84</version>
|
|
96
97
|
</dependency>
|
|
97
98
|
<dependency>
|
|
98
99
|
<groupId>org.jruby</groupId>
|
|
99
100
|
<artifactId>jruby-core</artifactId>
|
|
100
|
-
<version>9.2.
|
|
101
|
+
<version>9.2.1.0</version>
|
|
101
102
|
<scope>provided</scope>
|
|
102
103
|
</dependency>
|
|
103
104
|
<dependency>
|
|
@@ -107,9 +108,15 @@ DO NOT MODIFY - GENERATED CODE
|
|
|
107
108
|
<scope>compile</scope>
|
|
108
109
|
</dependency>
|
|
109
110
|
<dependency>
|
|
110
|
-
<groupId>junit</groupId>
|
|
111
|
-
<artifactId>junit</artifactId>
|
|
112
|
-
<version>
|
|
111
|
+
<groupId>org.junit.jupiter</groupId>
|
|
112
|
+
<artifactId>junit-jupiter</artifactId>
|
|
113
|
+
<version>5.11.4</version>
|
|
114
|
+
<scope>test</scope>
|
|
115
|
+
</dependency>
|
|
116
|
+
<dependency>
|
|
117
|
+
<groupId>org.jruby</groupId>
|
|
118
|
+
<artifactId>jruby-stdlib</artifactId>
|
|
119
|
+
<version>9.2.1.0</version>
|
|
113
120
|
<scope>test</scope>
|
|
114
121
|
</dependency>
|
|
115
122
|
</dependencies>
|
|
@@ -208,7 +215,7 @@ DO NOT MODIFY - GENERATED CODE
|
|
|
208
215
|
<plugin>
|
|
209
216
|
<groupId>org.codehaus.mojo</groupId>
|
|
210
217
|
<artifactId>exec-maven-plugin</artifactId>
|
|
211
|
-
<version>
|
|
218
|
+
<version>3.5.0</version>
|
|
212
219
|
<executions>
|
|
213
220
|
<execution>
|
|
214
221
|
<id>invoker-generator</id>
|
|
@@ -234,7 +241,7 @@ DO NOT MODIFY - GENERATED CODE
|
|
|
234
241
|
<plugin>
|
|
235
242
|
<groupId>org.codehaus.mojo</groupId>
|
|
236
243
|
<artifactId>build-helper-maven-plugin</artifactId>
|
|
237
|
-
<version>1
|
|
244
|
+
<version>3.6.1</version>
|
|
238
245
|
<executions>
|
|
239
246
|
<execution>
|
|
240
247
|
<phase>process-classes</phase>
|
|
@@ -251,7 +258,7 @@ DO NOT MODIFY - GENERATED CODE
|
|
|
251
258
|
</plugin>
|
|
252
259
|
<plugin>
|
|
253
260
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
254
|
-
<version>3.
|
|
261
|
+
<version>3.15.0</version>
|
|
255
262
|
<executions>
|
|
256
263
|
<execution>
|
|
257
264
|
<id>compile-populators</id>
|
|
@@ -319,9 +326,13 @@ DO NOT MODIFY - GENERATED CODE
|
|
|
319
326
|
</execution>
|
|
320
327
|
</executions>
|
|
321
328
|
</plugin>
|
|
329
|
+
<plugin>
|
|
330
|
+
<artifactId>maven-surefire-plugin</artifactId>
|
|
331
|
+
<version>3.5.5</version>
|
|
332
|
+
</plugin>
|
|
322
333
|
<plugin>
|
|
323
334
|
<artifactId>maven-deploy-plugin</artifactId>
|
|
324
|
-
<version>
|
|
335
|
+
<version>3.1.4</version>
|
|
325
336
|
<executions>
|
|
326
337
|
<execution>
|
|
327
338
|
<goals>
|
|
@@ -373,7 +384,7 @@ DO NOT MODIFY - GENERATED CODE
|
|
|
373
384
|
<plugins>
|
|
374
385
|
<plugin>
|
|
375
386
|
<artifactId>maven-invoker-plugin</artifactId>
|
|
376
|
-
<version>
|
|
387
|
+
<version>3.8.1</version>
|
|
377
388
|
<executions>
|
|
378
389
|
<execution>
|
|
379
390
|
<id>tests-with-different-bc-versions</id>
|
|
@@ -401,7 +412,7 @@ DO NOT MODIFY - GENERATED CODE
|
|
|
401
412
|
</plugins>
|
|
402
413
|
</build>
|
|
403
414
|
<properties>
|
|
404
|
-
<bc.versions>1.78,1.79,1.80,1.81,1.82,1.83</bc.versions>
|
|
415
|
+
<bc.versions>1.78,1.79,1.80,1.81,1.82,1.83,1.84</bc.versions>
|
|
405
416
|
<jruby.version>9.2.19.0</jruby.version>
|
|
406
417
|
<jruby.versions>9.2.19.0</jruby.versions>
|
|
407
418
|
</properties>
|
|
@@ -412,7 +423,7 @@ DO NOT MODIFY - GENERATED CODE
|
|
|
412
423
|
<plugins>
|
|
413
424
|
<plugin>
|
|
414
425
|
<artifactId>maven-invoker-plugin</artifactId>
|
|
415
|
-
<version>
|
|
426
|
+
<version>3.8.1</version>
|
|
416
427
|
<executions>
|
|
417
428
|
<execution>
|
|
418
429
|
<goals>
|
|
@@ -439,7 +450,7 @@ DO NOT MODIFY - GENERATED CODE
|
|
|
439
450
|
</plugins>
|
|
440
451
|
</build>
|
|
441
452
|
<properties>
|
|
442
|
-
<bc.versions>1.78,1.79,1.80,1.81,1.82,1.83</bc.versions>
|
|
453
|
+
<bc.versions>1.78,1.79,1.80,1.81,1.82,1.83,1.84</bc.versions>
|
|
443
454
|
<jruby.version>9.2.20.1</jruby.version>
|
|
444
455
|
<jruby.versions>9.2.20.1</jruby.versions>
|
|
445
456
|
</properties>
|
|
@@ -450,7 +461,7 @@ DO NOT MODIFY - GENERATED CODE
|
|
|
450
461
|
<plugins>
|
|
451
462
|
<plugin>
|
|
452
463
|
<artifactId>maven-invoker-plugin</artifactId>
|
|
453
|
-
<version>
|
|
464
|
+
<version>3.8.1</version>
|
|
454
465
|
<executions>
|
|
455
466
|
<execution>
|
|
456
467
|
<goals>
|
|
@@ -477,7 +488,7 @@ DO NOT MODIFY - GENERATED CODE
|
|
|
477
488
|
</plugins>
|
|
478
489
|
</build>
|
|
479
490
|
<properties>
|
|
480
|
-
<bc.versions>1.78,1.79,1.80,1.81,1.82,1.83</bc.versions>
|
|
491
|
+
<bc.versions>1.78,1.79,1.80,1.81,1.82,1.83,1.84</bc.versions>
|
|
481
492
|
<jruby.version>9.3.3.0</jruby.version>
|
|
482
493
|
<jruby.versions>9.3.3.0</jruby.versions>
|
|
483
494
|
</properties>
|
|
@@ -488,7 +499,7 @@ DO NOT MODIFY - GENERATED CODE
|
|
|
488
499
|
<plugins>
|
|
489
500
|
<plugin>
|
|
490
501
|
<artifactId>maven-invoker-plugin</artifactId>
|
|
491
|
-
<version>
|
|
502
|
+
<version>3.8.1</version>
|
|
492
503
|
<executions>
|
|
493
504
|
<execution>
|
|
494
505
|
<goals>
|
|
@@ -515,7 +526,7 @@ DO NOT MODIFY - GENERATED CODE
|
|
|
515
526
|
</plugins>
|
|
516
527
|
</build>
|
|
517
528
|
<properties>
|
|
518
|
-
<bc.versions>1.78,1.79,1.80,1.81,1.82,1.83</bc.versions>
|
|
529
|
+
<bc.versions>1.78,1.79,1.80,1.81,1.82,1.83,1.84</bc.versions>
|
|
519
530
|
<jruby.version>9.3.13.0</jruby.version>
|
|
520
531
|
<jruby.versions>9.3.13.0</jruby.versions>
|
|
521
532
|
</properties>
|
|
@@ -526,7 +537,7 @@ DO NOT MODIFY - GENERATED CODE
|
|
|
526
537
|
<plugins>
|
|
527
538
|
<plugin>
|
|
528
539
|
<artifactId>maven-invoker-plugin</artifactId>
|
|
529
|
-
<version>
|
|
540
|
+
<version>3.8.1</version>
|
|
530
541
|
<executions>
|
|
531
542
|
<execution>
|
|
532
543
|
<goals>
|
|
@@ -553,7 +564,7 @@ DO NOT MODIFY - GENERATED CODE
|
|
|
553
564
|
</plugins>
|
|
554
565
|
</build>
|
|
555
566
|
<properties>
|
|
556
|
-
<bc.versions>1.78,1.79,1.80,1.81,1.82,1.83</bc.versions>
|
|
567
|
+
<bc.versions>1.78,1.79,1.80,1.81,1.82,1.83,1.84</bc.versions>
|
|
557
568
|
<jruby.version>9.4.8.0</jruby.version>
|
|
558
569
|
<jruby.versions>9.4.8.0</jruby.versions>
|
|
559
570
|
</properties>
|
|
@@ -564,7 +575,7 @@ DO NOT MODIFY - GENERATED CODE
|
|
|
564
575
|
<plugins>
|
|
565
576
|
<plugin>
|
|
566
577
|
<artifactId>maven-invoker-plugin</artifactId>
|
|
567
|
-
<version>
|
|
578
|
+
<version>3.8.1</version>
|
|
568
579
|
<executions>
|
|
569
580
|
<execution>
|
|
570
581
|
<goals>
|
|
@@ -591,7 +602,7 @@ DO NOT MODIFY - GENERATED CODE
|
|
|
591
602
|
</plugins>
|
|
592
603
|
</build>
|
|
593
604
|
<properties>
|
|
594
|
-
<bc.versions>1.78,1.79,1.80,1.81,1.82,1.83</bc.versions>
|
|
605
|
+
<bc.versions>1.78,1.79,1.80,1.81,1.82,1.83,1.84</bc.versions>
|
|
595
606
|
<jruby.version>9.4.14.0</jruby.version>
|
|
596
607
|
<jruby.versions>9.4.14.0</jruby.versions>
|
|
597
608
|
</properties>
|
|
@@ -602,7 +613,7 @@ DO NOT MODIFY - GENERATED CODE
|
|
|
602
613
|
<plugins>
|
|
603
614
|
<plugin>
|
|
604
615
|
<artifactId>maven-invoker-plugin</artifactId>
|
|
605
|
-
<version>
|
|
616
|
+
<version>3.8.1</version>
|
|
606
617
|
<executions>
|
|
607
618
|
<execution>
|
|
608
619
|
<goals>
|
|
@@ -629,7 +640,7 @@ DO NOT MODIFY - GENERATED CODE
|
|
|
629
640
|
</plugins>
|
|
630
641
|
</build>
|
|
631
642
|
<properties>
|
|
632
|
-
<bc.versions>1.78,1.79,1.80,1.81,1.82,1.83</bc.versions>
|
|
643
|
+
<bc.versions>1.78,1.79,1.80,1.81,1.82,1.83,1.84</bc.versions>
|
|
633
644
|
<jruby.version>10.0.2.0</jruby.version>
|
|
634
645
|
<jruby.versions>10.0.2.0</jruby.versions>
|
|
635
646
|
</properties>
|
|
@@ -640,7 +651,7 @@ DO NOT MODIFY - GENERATED CODE
|
|
|
640
651
|
<plugins>
|
|
641
652
|
<plugin>
|
|
642
653
|
<artifactId>maven-gpg-plugin</artifactId>
|
|
643
|
-
<version>1.
|
|
654
|
+
<version>3.1.0</version>
|
|
644
655
|
<executions>
|
|
645
656
|
<execution>
|
|
646
657
|
<phase>verify</phase>
|
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.
|
|
4
|
+
version: 0.16.0
|
|
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: 2026-
|
|
13
|
+
date: 2026-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.
|
|
@@ -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.84/bcpkix-jdk18on-1.84.jar
|
|
45
|
+
- lib/org/bouncycastle/bcprov-jdk18on/1.84/bcprov-jdk18on-1.84.jar
|
|
46
|
+
- lib/org/bouncycastle/bctls-jdk18on/1.84/bctls-jdk18on-1.84.jar
|
|
47
|
+
- lib/org/bouncycastle/bcutil-jdk18on/1.84/bcutil-jdk18on-1.84.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.84
|
|
71
|
+
- jar org.bouncycastle:bcpkix-jdk18on, 1.84
|
|
72
|
+
- jar org.bouncycastle:bctls-jdk18on, 1.84
|
|
73
|
+
- jar org.bouncycastle:bcutil-jdk18on, 1.84
|
|
74
74
|
rubygems_version: 3.1.6
|
|
75
75
|
signing_key:
|
|
76
76
|
specification_version: 4
|