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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d768799eb4f3fb6e1ec8937cdf77c3ab5c5a3c453a8ea38e8886b0c96eb85778
4
- data.tar.gz: 7e36f7e488cce83fbeae8cea19bb5cc817a10759243c5ce9345a65e0837ba7ca
3
+ metadata.gz: b0e45e3664b7a3f0ece679baf73ddb2da020d9255d1af3d40ed6e9cdd416ea93
4
+ data.tar.gz: 9628e1a30a0c953b631f8d2e0c0703f700594a3257fc5d5866f4834776504436
5
5
  SHA512:
6
- metadata.gz: 69dcd674d157588140b6ef64f3996a4a7a0847ddd713550752ac509310430fe5b9463c532c69538cbdc136bcbe934d6e2670a6bd4e2f91283cff18ddd5bf2eb3
7
- data.tar.gz: 5583751022390d99a99b2179113acd5589366ecc407b50c3a0833ba2873ba3d3037a05644e02ffffb507ea4c3852e90c9f9507a8f65188c96034ed36533e2213
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
 
@@ -937,6 +937,7 @@ ossl_pkey_export_spki(VALUE self, int to_der)
937
937
  BIO *bio;
938
938
 
939
939
  GetPKey(self, pkey);
940
+ ossl_pkey_check_public_key(pkey);
940
941
  bio = BIO_new(BIO_s_mem());
941
942
  if (!bio)
942
943
  ossl_raise(ePKeyError, "BIO_new");
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.
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module OpenSSL
4
- VERSION = "3.2.1"
4
+ VERSION = "3.2.2"
5
5
  end
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.1
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: 2024-12-18 00:00:00.000000000 Z
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.5.22
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: []