openssl 3.2.1 → 3.2.2
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 +23 -0
- data/ext/openssl/ossl_pkey.c +1 -0
- data/lib/openssl/ssl.rb +0 -1
- data/lib/openssl/version.rb +1 -1
- metadata +3 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b0e45e3664b7a3f0ece679baf73ddb2da020d9255d1af3d40ed6e9cdd416ea93
|
4
|
+
data.tar.gz: 9628e1a30a0c953b631f8d2e0c0703f700594a3257fc5d5866f4834776504436
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 80d8c83ecee3e6279ff11923b370b2053960c8b964d9298882a69971bb135712a8ac7449cd3d6262b9120da922232703859a2cd83782b1ee9f770ce0db466607
|
7
|
+
data.tar.gz: 226de23eddbdfe81d734839cb719331061e90b3b86eeca651e6d51dded1556a76bcf2a0dd9e52f6a6cbba49c01985200eb6b907b8ac75df7041508fee45aaa22
|
data/History.md
CHANGED
@@ -1,3 +1,9 @@
|
|
1
|
+
Version 3.2.2
|
2
|
+
=============
|
3
|
+
|
4
|
+
Merged changes in 3.1.2.
|
5
|
+
|
6
|
+
|
1
7
|
Version 3.2.1
|
2
8
|
=============
|
3
9
|
|
@@ -44,6 +50,23 @@ Notable changes
|
|
44
50
|
[[GitHub #141]](https://github.com/ruby/openssl/pull/141)
|
45
51
|
|
46
52
|
|
53
|
+
Version 3.1.2
|
54
|
+
=============
|
55
|
+
|
56
|
+
Bug fixes
|
57
|
+
---------
|
58
|
+
|
59
|
+
* Fix crash when attempting to export an incomplete `OpenSSL::PKey::DSA` key.
|
60
|
+
[[GitHub #845]](https://github.com/ruby/openssl/issues/845)
|
61
|
+
[[GitHub #847]](https://github.com/ruby/openssl/pull/847)
|
62
|
+
* Remove the `OpenSSL::X509::V_FLAG_CRL_CHECK_ALL` flag from the default store
|
63
|
+
used by `OpenSSL::SSL::SSLContext#set_params`. It causes certificate
|
64
|
+
verification to fail with OpenSSL 3.6.0. It has no effect with any other
|
65
|
+
OpenSSL versions.
|
66
|
+
[[GitHub #949]](https://github.com/ruby/openssl/issues/949)
|
67
|
+
[[GitHub #950]](https://github.com/ruby/openssl/pull/950)
|
68
|
+
|
69
|
+
|
47
70
|
Version 3.1.1
|
48
71
|
=============
|
49
72
|
|
data/ext/openssl/ossl_pkey.c
CHANGED
data/lib/openssl/ssl.rb
CHANGED
@@ -92,7 +92,6 @@ ssbzSibBsu/6iGtCOGEoXJf//////////wIBAg==
|
|
92
92
|
|
93
93
|
DEFAULT_CERT_STORE = OpenSSL::X509::Store.new # :nodoc:
|
94
94
|
DEFAULT_CERT_STORE.set_default_paths
|
95
|
-
DEFAULT_CERT_STORE.flags = OpenSSL::X509::V_FLAG_CRL_CHECK_ALL
|
96
95
|
|
97
96
|
# A callback invoked when DH parameters are required for ephemeral DH key
|
98
97
|
# exchange.
|
data/lib/openssl/version.rb
CHANGED
metadata
CHANGED
@@ -1,17 +1,16 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: openssl
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.2.
|
4
|
+
version: 3.2.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Martin Bosslet
|
8
8
|
- SHIBATA Hiroshi
|
9
9
|
- Zachary Scott
|
10
10
|
- Kazuki Yamaguchi
|
11
|
-
autorequire:
|
12
11
|
bindir: bin
|
13
12
|
cert_chain: []
|
14
|
-
date:
|
13
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
15
14
|
dependencies: []
|
16
15
|
description: OpenSSL for Ruby provides access to SSL/TLS and general-purpose cryptography
|
17
16
|
based on the OpenSSL library.
|
@@ -103,7 +102,6 @@ licenses:
|
|
103
102
|
- Ruby
|
104
103
|
metadata:
|
105
104
|
msys2_mingw_dependencies: openssl
|
106
|
-
post_install_message:
|
107
105
|
rdoc_options:
|
108
106
|
- "--main"
|
109
107
|
- README.md
|
@@ -120,8 +118,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
120
118
|
- !ruby/object:Gem::Version
|
121
119
|
version: '0'
|
122
120
|
requirements: []
|
123
|
-
rubygems_version: 3.
|
124
|
-
signing_key:
|
121
|
+
rubygems_version: 3.6.9
|
125
122
|
specification_version: 4
|
126
123
|
summary: SSL/TLS and general-purpose cryptography for Ruby
|
127
124
|
test_files: []
|