jruby-openssl 0.14.0-java → 0.14.1-java
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/History.md +17 -2
- data/lib/jopenssl/version.rb +1 -1
- data/lib/jopenssl.jar +0 -0
- data/pom.xml +3 -4
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: d9118a35fb237247a85feb23c1eb26c25336e4b5
|
4
|
+
data.tar.gz: 29de0544db8cf4c4afff947e5319b4da9ce82028
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9df87177daff4f5427f540f9568f91b6b460db85257b67fcabf05012277abaa771ed6b9dfd50b0049e7567c10af00b29d559937236cdb2f870ea14f6ffd0cc96
|
7
|
+
data.tar.gz: cc79d7615d218e9c29996915e7067fb89d3b7d46281d97f7855cf84d511dce854c9bceff387b85d0e50163f398809e87449e387d6936abba5001b395d4a5643a
|
data/History.md
CHANGED
@@ -1,10 +1,25 @@
|
|
1
|
+
## 0.14.1
|
2
|
+
|
3
|
+
* [refactor] improve performance of Diffie-Hellman key exchange (#272)
|
4
|
+
* Try to use JDK console to prompt for pass (#270)
|
5
|
+
* [fix] for PKCS8 EC private key support (#267)
|
6
|
+
* ~~"[fix] handle potential buffer overflow on write" (#242)~~
|
7
|
+
|
8
|
+
## 0.14.1 (CR2)
|
9
|
+
|
10
|
+
* [fix] Java's default session timeout in 24h
|
11
|
+
* [fix] handle ArgumentError on `SSLSession#timeout=`
|
12
|
+
* [fix] handle potential buffer overflow on write (#242)
|
13
|
+
* [fix] buffer overflow after wrap-ing data - wait
|
14
|
+
* [refactor] try a few tricks to detect session re-use
|
15
|
+
|
1
16
|
## 0.14.0
|
2
17
|
|
3
18
|
This version upgraded to latest Bouncy-Castle (1.71) and is only compatible with
|
4
19
|
the new version mostly due artifact naming and breaking chances in BC itself.
|
5
20
|
|
6
|
-
|
7
|
-
|
21
|
+
* [deps] upgrade BC to latest 1.71
|
22
|
+
* [fix] make set_minmax_proto_version private
|
8
23
|
|
9
24
|
## 0.13.0
|
10
25
|
|
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.14.
|
14
|
+
<version>0.14.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>
|
@@ -65,8 +65,8 @@ DO NOT MODIFY - GENERATED CODE
|
|
65
65
|
<invoker.test>${bc.versions}</invoker.test>
|
66
66
|
<jruby.plugins.version>2.0.1</jruby.plugins.version>
|
67
67
|
<jruby.switches>-W0</jruby.switches>
|
68
|
-
<jruby.version>9.
|
69
|
-
<jruby.versions>9.
|
68
|
+
<jruby.version>9.1.17.0</jruby.version>
|
69
|
+
<jruby.versions>9.1.17.0</jruby.versions>
|
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>
|
@@ -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>
|
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.14.
|
4
|
+
version: 0.14.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:
|
13
|
+
date: 2023-04-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.
|
@@ -72,7 +72,8 @@ requirements:
|
|
72
72
|
- jar org.bouncycastle:bcpkix-jdk18on, 1.71
|
73
73
|
- jar org.bouncycastle:bctls-jdk18on, 1.71
|
74
74
|
- jar org.bouncycastle:bcutil-jdk18on, 1.71
|
75
|
-
|
75
|
+
rubyforge_project:
|
76
|
+
rubygems_version: 2.6.14.1
|
76
77
|
signing_key:
|
77
78
|
specification_version: 4
|
78
79
|
summary: JRuby OpenSSL
|