openssl 3.2.1-java → 3.3.0-java

Sign up to get free protection for your applications and to get access to all the features.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/CONTRIBUTING.md +180 -29
  3. data/History.md +76 -0
  4. data/README.md +11 -7
  5. metadata +5 -7
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: fd86299b603f070897e20a870d39421abb5ac5d9c50d110b335a78bb7d4132f3
4
- data.tar.gz: b84f9c3f72c59a695da35229d86c5aa5c69002723ae815689c8362f694909cbf
3
+ metadata.gz: 41ca3fffe70ca4744fcbcb51f952105ae9a9f7698150fe2863123ff3c840898f
4
+ data.tar.gz: d9e2b148027e75497bad86ff40a83709c8024ac7feaa3d14faba9243ddcbdf4c
5
5
  SHA512:
6
- metadata.gz: 3df3e82e81d9437557440560679b2d7c4af842c11b6ffe80c7363cc8d32d15210535a93b98170f1d82a53d1cdfef75230c2f86237a4a5f6ad90982b660b737cc
7
- data.tar.gz: 1185bf1de8276fb1937e684da35d0ee9e892b2748e9749a6b254eb1125f58887884a60870dd52161c104c086615b0262d08cdb5ac32007f705f66b5100c5cf7b
6
+ metadata.gz: be1b780d7c7d77876c7896dd52076d4bf0cd4e973722c70ee71d3364ae4f58c951b064f93c4846206eaba7a63e14dd3a24ac8479336de02b17b11afbabe7e021
7
+ data.tar.gz: 452e68dc726140723010cb85b02987d015e8c914dcd87c704248e797562a25f5a01b5ff2005169c234cc58a4ac0e6fdfa3e5576b192e2d128d8c3b98d7d996de
data/CONTRIBUTING.md CHANGED
@@ -10,7 +10,7 @@ Bugs and feature requests are tracked on [GitHub].
10
10
 
11
11
  If you think you found a bug, file a ticket on GitHub. Please DO NOT report
12
12
  security issues here, there is a separate procedure which is described on
13
- ["Security at ruby-lang.org"](https://www.ruby-lang.org/en/security/).
13
+ ["Security at ruby-lang.org"][Ruby Security].
14
14
 
15
15
  When reporting a bug, please make sure you include:
16
16
 
@@ -22,26 +22,25 @@ When reporting a bug, please make sure you include:
22
22
 
23
23
  There are a number of unresolved issues and feature requests for openssl that
24
24
  need review. Before submitting a new ticket, it is recommended to check
25
- [known issues].
25
+ [known issues][Issues].
26
26
 
27
27
  ## Submitting patches
28
28
 
29
29
  Patches are also very welcome!
30
30
 
31
- Please submit a [pull request] with your changes.
31
+ Please submit a [pull request][Compare changes] with your changes.
32
32
 
33
33
  Make sure that your branch does:
34
34
 
35
35
  * Have good commit messages
36
- * Follow Ruby's coding style ([DeveloperHowTo])
36
+ * Follow Ruby's coding style ([Developer-How-To][Ruby Developer-How-To])
37
37
  * Pass the test suite successfully (see "Testing")
38
38
 
39
39
  ## Testing
40
40
 
41
41
  We have a test suite!
42
42
 
43
- Test cases are located under the
44
- [`test/openssl`](https://github.com/ruby/openssl/tree/master/test/openssl)
43
+ Test cases are located under the [`test/openssl`][GitHub test/openssl]
45
44
  directory.
46
45
 
47
46
  You can run it with the following three commands:
@@ -54,31 +53,176 @@ $ bundle exec rake test
54
53
 
55
54
  ### With different versions of OpenSSL
56
55
 
57
- Ruby OpenSSL supports various versions of OpenSSL library. The test suite needs
58
- to pass on all supported combinations.
56
+ Ruby OpenSSL supports various versions of the OpenSSL library. The test suite
57
+ needs to pass on all supported combinations.
59
58
 
60
- Similarly to when installing `openssl` gem via the `gem` command,
61
- you can pass a `--with-openssl-dir` argument to `rake compile`
62
- to specify the OpenSSL library to build against.
59
+ If you want to test, debug, report an issue, or contribute to the Ruby OpenSSL
60
+ or [the OpenSSL project][OpenSSL] in the non-FIPS or the
61
+ [FIPS][OpenSSL README-FIPS] case, compiling OpenSSL from the source by yourself
62
+ is a good practice.
63
+
64
+ The following steps are tested in Linux and GCC environment. You can adjust the
65
+ commands in the steps for a different environment.
66
+
67
+ To download the OpenSSL source from the Git repository, you can run the following
68
+ commands:
69
+
70
+ ```
71
+ $ git clone https://github.com/openssl/openssl.git
72
+ $ cd openssl
73
+ ```
74
+
75
+ You see the `master` branch used as a development branch. Testing against the
76
+ latest OpenSSL master branch is a good practice to report an issue to the
77
+ OpenSSL project.
78
+
79
+ ```
80
+ $ git branch | grep '^*'
81
+ * master
82
+ ```
83
+
84
+ If you test against the latest stable branch, you can run the following command.
85
+ In this example, the `openssl-3.1` branch is the stable branch of OpenSSL 3.1
86
+ series.
87
+
88
+ ```
89
+ $ git checkout openssl-3.1
90
+ ```
91
+
92
+ To configure OpenSSL, you can run the following commands.
93
+
94
+ In this example, we use the `OPENSSL_DIR` environment variable to specify the
95
+ OpenSSL installed directory for convenience. Including the commit hash in the
96
+ directory name is a good practice.
97
+
98
+ ```
99
+ $ git rev-parse --short HEAD
100
+ 0bf18140f4
101
+
102
+ $ OPENSSL_DIR=$HOME/.openssl/openssl-fips-debug-0bf18140f4
103
+ ```
104
+
105
+ The following configuration options are useful in this case.
106
+ You can check [OpenSSL installation document][OpenSSL INSTALL] for details.
107
+
108
+ * `enable-fips`: Add an option to run with the OpenSSL FIPS module.
109
+ * `enable-trace`: Add an option to enabling tracing log. You can trace logs by
110
+ implementing a code. See the man page [OSSL_TRACE(3)][OpenSSL OSSL_TRACE] for
111
+ details.
112
+ * compiler flags
113
+ * `-Wl,-rpath,$(LIBRPATH)`: Set the runtime shared library path to run the
114
+ `openssl` command without the `LD_LIBRARY_PATH`. You can check
115
+ [this document][OpenSSL NOTES-UNIX] for details.
116
+ * `-O0 -g3 -ggdb3 -gdwarf-5`: You can set debugging compiler flags.
63
117
 
64
118
  ```
65
- $ ( curl -OL https://ftp.openssl.org/source/openssl-3.0.1.tar.gz &&
66
- tar xf openssl-3.0.1.tar.gz &&
67
- cd openssl-3.0.1 &&
68
- ./config --prefix=$HOME/.openssl/openssl-3.0.1 --libdir=lib &&
69
- make -j4 &&
70
- make install )
119
+ $ ./Configure \
120
+ --prefix=$OPENSSL_DIR \
121
+ --libdir=lib \
122
+ enable-fips \
123
+ enable-trace \
124
+ '-Wl,-rpath,$(LIBRPATH)' \
125
+ -O0 -g3 -ggdb3 -gdwarf-5
126
+ $ make -j4
127
+ $ make install
128
+ ```
129
+
130
+ To print installed OpenSSL version, you can run the following command:
131
+
132
+ ```
133
+ $ $OPENSSL_DIR/bin/openssl version
134
+ OpenSSL 3.2.0-alpha3-dev (Library: OpenSSL 3.2.0-alpha3-dev )
135
+ ```
136
+
137
+ Change the current working directory into Ruby OpenSSL's source directory.
138
+
139
+ To compile Ruby OpenSSL, you can run the following commands:
71
140
 
72
- $ # in Ruby/OpenSSL's source directory
141
+ Similarly to when installing `openssl` gem via the `gem` command, you can pass a
142
+ `--with-openssl-dir` argument to `rake compile` to specify the OpenSSL library
143
+ to build against.
144
+
145
+ * `MAKEFLAGS="V=1"`: Enable the compiler command lines to print in
146
+ the log.
147
+ * `RUBY_OPENSSL_EXTCFLAGS`: Set extra compiler flags to compile Ruby OpenSSL.
148
+
149
+ ```
73
150
  $ bundle exec rake clean
74
- $ bundle exec rake compile -- --with-openssl-dir=$HOME/.openssl/openssl-3.0.1
151
+ $ MAKEFLAGS="V=1" \
152
+ RUBY_OPENSSL_EXTCFLAGS="-O0 -g3 -ggdb3 -gdwarf-5" \
153
+ bundle exec rake compile -- --with-openssl-dir=$OPENSSL_DIR
154
+ ```
155
+
156
+ #### Testing normally in non-FIPS case
157
+
158
+ To test Ruby OpenSSL, you can run the following command:
159
+
160
+ ```
75
161
  $ bundle exec rake test
76
162
  ```
77
163
 
78
- The GitHub Actions workflow file
79
- [`test.yml`](https://github.com/ruby/openssl/tree/master/.github/workflows/test.yml)
80
- contains useful information for building OpenSSL/LibreSSL and testing against
81
- them.
164
+ #### Testing in FIPS case
165
+
166
+ To use OpenSSL 3.0 or later versions in a FIPS-approved manner, you must load the
167
+ `fips` and `base` providers, and also use the property query `fips=yes`. The
168
+ property query is used when fetching cryptographic algorithm implementations.
169
+ This must be done at the startup of a process to avoid implicitly loading the
170
+ `default` provider which has the non-FIPS cryptographic algorithm
171
+ implementations. See also the man page [fips_module(7)][OpenSSL fips_module].
172
+
173
+ You can set this in your OpenSSL configuration file by either appropriately
174
+ modifying the default OpenSSL configuration file located at
175
+ `OpenSSL::Config::DEFAULT_CONFIG_FILE` or temporarily overriding it with the
176
+ `OPENSSL_CONF` environment variable.
177
+
178
+ In this example, we explain on the latter way.
179
+
180
+ You can create a OpenSSL FIPS config `openssl_fips.cnf` file based on the
181
+ `openssl_fips.cnf.tmpl` file in this repository, and replacing the placeholder
182
+ `OPENSSL_DIR` with your OpenSSL installed directory.
183
+
184
+ ```
185
+ $ sed -e "s|OPENSSL_DIR|$OPENSSL_DIR|" tool/openssl_fips.cnf.tmpl | \
186
+ tee $OPENSSL_DIR/ssl/openssl_fips.cnf
187
+ ```
188
+
189
+ You can see the base and fips providers by running the following command if you
190
+ setup the OpenSSL FIPS config file properly.
191
+
192
+ ```
193
+ $ OPENSSL_CONF=$OPENSSL_DIR/ssl/openssl_fips.cnf \
194
+ $OPENSSL_DIR/bin/openssl list -providers
195
+ Providers:
196
+ base
197
+ name: OpenSSL Base Provider
198
+ version: 3.2.0
199
+ status: active
200
+ fips
201
+ name: OpenSSL FIPS Provider
202
+ version: 3.2.0
203
+ status: active
204
+ ```
205
+
206
+ You can run the current tests in the FIPS module case used in the GitHub
207
+ Actions file `test.yml` explained in a later sentence.
208
+
209
+ ```
210
+ $ OPENSSL_CONF=$OPENSSL_DIR/ssl/openssl_fips.cnf \
211
+ bundle exec rake test_fips
212
+ ```
213
+
214
+ You can also run the all the tests in the FIPS module case. You see many
215
+ failures. We are working in progress to fix the failures. Your contribution is
216
+ welcome.
217
+
218
+ ```
219
+ $ OPENSSL_CONF=$OPENSSL_DIR/ssl/openssl_fips.cnf \
220
+ TEST_RUBY_OPENSSL_FIPS_ENABLED=true \
221
+ bundle exec rake test
222
+ ```
223
+
224
+ The GitHub Actions workflow file [`test.yml`][GitHub test.yml] contains useful
225
+ information for building OpenSSL/LibreSSL and testing against them.
82
226
 
83
227
 
84
228
  ## Relation with Ruby source tree
@@ -103,7 +247,7 @@ security issue handling procedure for Ruby core.
103
247
 
104
248
  You can either use [HackerOne] or send an email to security@ruby-lang.org.
105
249
 
106
- Please see [Security] page on ruby-lang.org website for details.
250
+ Please see [Security][Ruby Security] page on ruby-lang.org website for details.
107
251
 
108
252
  Reported problems will be published after a fix is released.
109
253
 
@@ -112,9 +256,16 @@ _Thanks for your contributions!_
112
256
  _\- The Ruby OpenSSL team_
113
257
 
114
258
  [GitHub]: https://github.com/ruby/openssl
115
- [known issues]: https://github.com/ruby/openssl/issues
116
- [DeveloperHowTo]: https://bugs.ruby-lang.org/projects/ruby/wiki/DeveloperHowto
259
+ [Issues]: https://github.com/ruby/openssl/issues
260
+ [Compare changes]: https://github.com/ruby/openssl/compare
261
+ [GitHub test/openssl]: https://github.com/ruby/openssl/tree/master/test/openssl
262
+ [GitHub test.yml]: https://github.com/ruby/openssl/tree/master/.github/workflows/test.yml
263
+ [Ruby Developer-How-To]: https://github.com/ruby/ruby/wiki/Developer-How-To
264
+ [Ruby Security]: https://www.ruby-lang.org/en/security/
117
265
  [HackerOne]: https://hackerone.com/ruby
118
- [Security]: https://www.ruby-lang.org/en/security/
119
- [pull request]: https://github.com/ruby/openssl/compare
120
- [History.md]: https://github.com/ruby/openssl/tree/master/History.md
266
+ [OpenSSL]: https://www.openssl.org/
267
+ [OpenSSL INSTALL]: https://github.com/openssl/openssl/blob/master/INSTALL.md
268
+ [OpenSSL README-FIPS]: https://github.com/openssl/openssl/blob/master/README-FIPS.md
269
+ [OpenSSL NOTES-UNIX]: https://github.com/openssl/openssl/blob/master/NOTES-UNIX.md
270
+ [OpenSSL OSSL_TRACE]: https://www.openssl.org/docs/manmaster/man3/OSSL_TRACE.html
271
+ [OpenSSL fips_module]: https://www.openssl.org/docs/manmaster/man7/fips_module.html
data/History.md CHANGED
@@ -1,3 +1,79 @@
1
+ Version 3.3.0
2
+ =============
3
+
4
+ Compatibility
5
+ -------------
6
+
7
+ * Ruby version: 2.7 or later
8
+ * OpenSSL version: OpenSSL 1.0.2 or later, and LibreSSL 3.1 or later
9
+
10
+ Notable changes
11
+ ---------------
12
+
13
+ * `OpenSSL::SSL`
14
+ - `OpenSSL::SSL::SSLSocket#set_params` no longer sets `#min_version=` to TLS
15
+ 1.0 except when OpenSSL 1.0.2 is used. This has been done to disable
16
+ SSL 3.0, which is not supported by default in OpenSSL 1.1.0 or later, or in
17
+ LibreSSL. This lets it respect the system default if the system-wide
18
+ configuration file specifies a higher minimum protocol version.
19
+ [[GitHub #710]](https://github.com/ruby/openssl/pull/710)
20
+ - `OpenSSL::SSL::SSLSocket.new` no longer enables the `OpenSSL::SSL::OP_ALL`
21
+ SSL options by default and follows the system default.
22
+ [[GitHub #767]](https://github.com/ruby/openssl/pull/767)
23
+ - Add the following IO methods to `OpenSSL::SSL::SSLSocket`, which will pass
24
+ along to the underlying socket: `#local_address`, `#remote_address`,
25
+ `#close_on_exec=`, `#close_on_exec?`, `#wait`, `#wait_readable`, and
26
+ `#wait_writable`.
27
+ [[GitHub #708]](https://github.com/ruby/openssl/pull/708)
28
+ - Update `OpenSSL::SSL::SSLSocket#gets` to take the `chomp` keyword argument.
29
+ [[GitHub #708]](https://github.com/ruby/openssl/pull/708)
30
+ - Make `OpenSSL::SSL::SSLSocket` respect the `IO#timeout` value of the
31
+ underlying socket on Ruby 3.2 or later. `#timeout` and `#timeout=` methods
32
+ are also added.
33
+ [[GitHub #714]](https://github.com/ruby/openssl/pull/714)
34
+ - Add `OpenSSL::SSL::SSLSocket#close_read` and `#close_write`.
35
+ [[GitHub #743]](https://github.com/ruby/openssl/pull/743)
36
+ - Add `OpenSSL::Digest.digests` to get a list of all available digest
37
+ algorithms.
38
+ [[GitHub #726]](https://github.com/ruby/openssl/pull/726)
39
+ - Fix `OpenSSL::SSL::SSLSocket#read_nonblock` clearing the passed String
40
+ buffer when nothing can be read from the connection.
41
+ [[GitHub #739]](https://github.com/ruby/openssl/pull/739)
42
+ * Add `#to_text` methods to `OpenSSL::Timestamp::Response`,
43
+ `OpenSSL::Timestamp::Request`, `OpenSSL::Timestamp::TokenInfo`, and
44
+ `OpenSSL::PKCS7` to get a human-readable representation of the object.
45
+ [[GitHub #756]](https://github.com/ruby/openssl/pull/756)
46
+ * Add `OpenSSL::X509::Certificate#tbs_bytes` to get the DER encoding of the
47
+ TBSCertificate.
48
+ [[GitHub #753]](https://github.com/ruby/openssl/pull/753)
49
+ * Allow passing `nil` as the digest algorithm to `#sign` methods on
50
+ `OpenSSL::X509::Certificate`, `OpenSSL::X509::Request`, and
51
+ `OpenSSL::X509::CRL`. This adds supports for signing with EdDSA keys.
52
+ [[GitHub #761]](https://github.com/ruby/openssl/pull/761)
53
+ [[GitHub #804]](https://github.com/ruby/openssl/pull/804)
54
+ * Add `OpenSSL::SSL::SSLSocket#readbyte`.
55
+ [[GitHub #771]](https://github.com/ruby/openssl/pull/771)
56
+ * Change `OpenSSL::X509::Store#time=` to set the time to the `X509_VERIFY_PARAM`
57
+ in the `X509_STORE`. This allows `OpenSSL::Timestamp::Response#verify` to
58
+ verify a signature with the specified timestamp.
59
+ [[GitHub #770]](https://github.com/ruby/openssl/pull/770)
60
+ * Make `OpenSSL::PKCS7.encrypt`'s third parameter `cipher` mandatory. It had
61
+ an undocumented default value "RC2-40-CBC", which is not only insecure, but
62
+ also not supported in OpenSSL 3.0 or later.
63
+ [[GitHub #796]](https://github.com/ruby/openssl/pull/796)
64
+ * Make `OpenSSL::BN` shareable between ractors when frozen.
65
+ [[GitHub #808]](https://github.com/ruby/openssl/pull/808)
66
+ * Make `OpenSSL::Config` instances frozen by default, and make it shareable
67
+ between ractors. `OpenSSL::Config::DEFAULT_CONFIG_FILE` is also frozen.
68
+ [[GitHub #809]](https://github.com/ruby/openssl/pull/809)
69
+ * Add `OpenSSL::PKCS12#set_mac` to configure the MAC parameters and recalculate
70
+ a MAC for the content.
71
+ [[GitHub #788]](https://github.com/ruby/openssl/pull/788)
72
+
73
+ And various non-user-visible changes and bug fixes. Please see the commit
74
+ history for more details.
75
+
76
+
1
77
  Version 3.2.1
2
78
  =============
3
79
 
data/README.md CHANGED
@@ -18,10 +18,11 @@ included as a default gem in [supported Ruby branches][Ruby Maintenance Branches
18
18
 
19
19
  |Version|Maintenance status |Ruby compatibility|OpenSSL compatibility |
20
20
  |-------|-------------------------------|------------------|--------------------------------------------|
21
- |3.2.x |normal maintenance (Ruby 3.3) |Ruby 2.7+ |OpenSSL 1.0.2-3.1 (current) or LibreSSL 3.1+|
22
- |3.1.x |normal maintenance (Ruby 3.2) |Ruby 2.6+ |OpenSSL 1.0.2-3.1 (current) or LibreSSL 3.1+|
23
- |3.0.x |normal maintenance (Ruby 3.1) |Ruby 2.6+ |OpenSSL 1.0.2-3.1 (current) or LibreSSL 3.1+|
24
- |2.2.x |security maintenance (Ruby 3.0)|Ruby 2.3+ |OpenSSL 1.0.1-1.1.1 or LibreSSL 2.9+ |
21
+ |3.3.x |normal maintenance (Ruby 3.4) |Ruby 2.7+ |OpenSSL 1.0.2-3.4 (current) or LibreSSL 3.1+|
22
+ |3.2.x |normal maintenance (Ruby 3.3) |Ruby 2.7+ |OpenSSL 1.0.2-3.4 (current) or LibreSSL 3.1+|
23
+ |3.1.x |normal maintenance (Ruby 3.2) |Ruby 2.6+ |OpenSSL 1.0.2-3.4 (current) or LibreSSL 3.1+|
24
+ |3.0.x |security maintenance (Ruby 3.1)|Ruby 2.6+ |OpenSSL 1.0.2-3.4 (current) or LibreSSL 3.1+|
25
+ |2.2.x |end-of-life (Ruby 3.0) |Ruby 2.3+ |OpenSSL 1.0.1-1.1.1 or LibreSSL 2.9+ |
25
26
  |2.1.x |end-of-life (Ruby 2.5-2.7) |Ruby 2.3+ |OpenSSL 1.0.1-1.1.1 or LibreSSL 2.5+ |
26
27
  |2.0.x |end-of-life (Ruby 2.4) |Ruby 2.3+ |OpenSSL 0.9.8-1.1.1 or LibreSSL 2.3+ |
27
28
 
@@ -32,8 +33,7 @@ included as a default gem in [supported Ruby branches][Ruby Maintenance Branches
32
33
 
33
34
  > **Note**
34
35
  > The openssl gem is included with Ruby by default, but you may wish to upgrade
35
- > it to a newer version available at
36
- > [rubygems.org](https://rubygems.org/gems/openssl).
36
+ > it to a newer version available at [rubygems.org][RubyGems.org openssl].
37
37
 
38
38
  To upgrade it, you can use RubyGems:
39
39
 
@@ -59,6 +59,8 @@ gem 'openssl', git: 'https://github.com/ruby/openssl'
59
59
 
60
60
  After running `bundle install`, you should have the gem installed in your bundle.
61
61
 
62
+ [RubyGems.org openssl]: https://rubygems.org/gems/openssl
63
+
62
64
  ## Usage
63
65
 
64
66
  Once installed, you can require "openssl" in your application.
@@ -80,4 +82,6 @@ Please read our [CONTRIBUTING.md] for instructions.
80
82
  ## Security
81
83
 
82
84
  Security issues should be reported to ruby-core by following the process
83
- described on ["Security at ruby-lang.org"](https://www.ruby-lang.org/en/security/).
85
+ described on ["Security at ruby-lang.org"][Security].
86
+
87
+ [Security]: https://www.ruby-lang.org/en/security/
metadata CHANGED
@@ -1,25 +1,24 @@
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.3.0
5
5
  platform: java
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: 2024-12-21 00:00:00.000000000 Z
15
14
  dependencies:
16
15
  - !ruby/object:Gem::Dependency
16
+ name: jruby-openssl
17
17
  requirement: !ruby/object:Gem::Requirement
18
18
  requirements:
19
19
  - - "~>"
20
20
  - !ruby/object:Gem::Version
21
21
  version: '0.14'
22
- name: jruby-openssl
23
22
  type: :runtime
24
23
  prerelease: false
25
24
  version_requirements: !ruby/object:Gem::Requirement
@@ -44,9 +43,9 @@ files:
44
43
  homepage: https://github.com/ruby/openssl
45
44
  licenses:
46
45
  - Ruby
46
+ - BSD-2-Clause
47
47
  metadata:
48
48
  msys2_mingw_dependencies: openssl
49
- post_install_message:
50
49
  rdoc_options:
51
50
  - "--main"
52
51
  - README.md
@@ -63,8 +62,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
63
62
  - !ruby/object:Gem::Version
64
63
  version: '0'
65
64
  requirements: []
66
- rubygems_version: 3.3.26
67
- signing_key:
65
+ rubygems_version: 3.6.1
68
66
  specification_version: 4
69
67
  summary: SSL/TLS and general-purpose cryptography for Ruby
70
68
  test_files: []