]> git.ipfire.org Git - thirdparty/openssl.git/commit
Extend `mask` of `ssl_method_st` to 64-bit
authorerbsland-dev <github@erbsland.dev>
Thu, 20 Jun 2024 18:44:00 +0000 (20:44 +0200)
committerNeil Horman <nhorman@openssl.org>
Sun, 23 Jun 2024 14:09:07 +0000 (10:09 -0400)
commit89c9c3b857b5d68d835c3c3d371dc74a26f568fd
treeb1e58c8a719df0abac3f7a75deacace047d07350
parentb23cd39f0a4e3cfe142694402a5246a498a3574f
Extend `mask` of `ssl_method_st` to 64-bit

Fixes #23260: The bit count for `SSL_OP_*` flags has exceeded 32 bits, making it impossible to handle newer flags and protocol extensions with the existing 32-bit variables. This commit extends the `mask` field in the `ssl_method_st` structure to 64-bit, aligning them with the previously extended 64-bit `options` field.

Reviewed-by: Neil Horman <nhorman@openssl.org>
Reviewed-by: Paul Dale <ppzgs1@gmail.com>
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/24692)
ssl/ssl_local.h