jruby-openssl 0.16.0-java → 0.16.1-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 +19 -0
- data/Rakefile +4 -4
- data/lib/jopenssl/version.rb +1 -1
- data/lib/jopenssl.jar +0 -0
- data/pom.xml +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 120053d9feb405b6c328e4d02651775c3de9ad821826d62c441fc50f61ebf2c2
|
|
4
|
+
data.tar.gz: 76bb34563d8e0d4e929d85a5e62b2bb23447a1ad8c509663472ad0c0dc8b3e9c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b0defe8200cd6c0a915907c0d779fb379a1b85e526720588a893889bd54b9500d924d7e05bede4e18aeca3d5fda60f350fb503923ff30034a971077ae3bdfbb6
|
|
7
|
+
data.tar.gz: 954ce98e6fa10f11a9979fc1cf052ea12980d290c9641d06f4d8ad1bfab07bb19c2faed8dab86abfae8e6c4ca622b40eea0142608d498da459457b44ff05c150
|
data/History.md
CHANGED
|
@@ -1,3 +1,22 @@
|
|
|
1
|
+
## 0.16.1
|
|
2
|
+
|
|
3
|
+
EdDSA (Ed25519/Ed448) key support.
|
|
4
|
+
PKey compatibility improvements, X.509 and SSL fixes.
|
|
5
|
+
|
|
6
|
+
- [fix] prepend leaf cert to `extra_chain_cert` (#181)
|
|
7
|
+
- [compat] `Store#add_cert` and `add_crl` handle wrong argument
|
|
8
|
+
- [compat] `Store#time=` accepts numeric epoch seconds like CRuby
|
|
9
|
+
- [refactor] add ASN.1 sequence bounds checks in `PKey` parsing
|
|
10
|
+
- [compat] implement `SSLSocket#pending` bytes
|
|
11
|
+
- [fix] make sure `Cert#tbs_bytes` is up-to-date (#364)
|
|
12
|
+
- [fix] `SPKI#sign` NPE due missing ASN1 registry fallback
|
|
13
|
+
- [feat] implement `Netscape::SPKI#to_text`
|
|
14
|
+
- [compat] `PKey::DH#derive` + fix `compute_key` output format
|
|
15
|
+
- [compat] expose `derive`, `raw_private_key`, `raw_public_key` on `PKey`
|
|
16
|
+
- [compat] make `to_text()` available for all `PKey` classes
|
|
17
|
+
- [compat] expose `public_to_der`, `public_to_pem`, `private_to_der`, `private_to_pem` on `PKey`
|
|
18
|
+
- [feat] implement Ed25519/Ed448 (EdDSA) key support
|
|
19
|
+
|
|
1
20
|
## 0.16.0
|
|
2
21
|
|
|
3
22
|
Upgrading Bouncy Castle to version 1.84.
|
data/Rakefile
CHANGED
|
@@ -33,9 +33,9 @@ Rake::TestTask.new do |task|
|
|
|
33
33
|
task.libs << File.expand_path('src/test/ruby', File.dirname(__FILE__))
|
|
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
|
-
task.verbose =
|
|
37
|
-
task.loader =
|
|
38
|
-
task.ruby_opts = [ '-C', 'src/test/ruby', '-rbundler/setup' ]
|
|
36
|
+
task.verbose = false # using -v directly instead due issues with rake
|
|
37
|
+
task.loader = :direct
|
|
38
|
+
task.ruby_opts = [ '-v', '-C', 'src/test/ruby', '-rbundler/setup' ]
|
|
39
39
|
end
|
|
40
40
|
task :test => 'lib/jopenssl.jar'
|
|
41
41
|
|
|
@@ -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 { |
|
|
52
|
+
loader = "ARGV.each { |file| require(file) }"
|
|
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
|
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.16.
|
|
14
|
+
<version>0.16.1</version>
|
|
15
15
|
<packaging>gem</packaging>
|
|
16
16
|
<name>JRuby OpenSSL</name>
|
|
17
17
|
<description>JRuby-OpenSSL is an add-on gem for JRuby that emulates the Ruby OpenSSL native library.</description>
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jruby-openssl
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.16.
|
|
4
|
+
version: 0.16.1
|
|
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-06-24 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.
|