[openssl/openssl] e77160: Add test for CVE-2026-63076

"'openssl-machine' via openssl-commits" <[email protected]>
Newsgroups gmane.comp.encryption.openssl.cvs
Message-ID <openssl/openssl/push/refs/heads/openssl-3.6/[email protected]>
  Branch: refs/heads/openssl-3.6
  Home:   https://github.com/openssl/openssl
  Commit: e77160c3780c10e5364ab08548072e64d4965110
      https://github.com/openssl/openssl/commit/e77160c3780c10e5364ab08548072e64d4965110
  Author: Daniel Kubec <[email protected]>
  Date:   2026-08-24 (Mon, 24 Aug 2026)

  Changed paths:
    M test/cmp_protect_test.c

  Log Message:
  -----------
  Add test for CVE-2026-63076

Assisted-by: Claude:claude-fable-5
Reviewed-by: Milan Broz <[email protected]>
Reviewed-by: Norbert Pocs <[email protected]>
Merge-date: Sat Aug 22 06:11:12 2026


  Commit: 49de27169f4cc42619a096c38412e47a3f890803
      https://github.com/openssl/openssl/commit/49de27169f4cc42619a096c38412e47a3f890803
  Author: Daniel Kubec <[email protected]>
  Date:   2026-08-24 (Mon, 24 Aug 2026)

  Changed paths:
    M crypto/cmp/cmp_protect.c

  Log Message:
  -----------
  Fix Remote NULL deref in ossl_cmp_calc_protection() via crafted protectionAlg

ossl_cmp_calc_protection() only checked whether the protectionAlg parameter
(ppval) was NULL before treating it as a PBMParameter ASN1_STRING.

X509_ALGOR_get0() does not validate the ASN.1 type of the parameter against what
the caller expects. For id-PasswordBasedMAC, a crafted message can encode the
parameter as a BOOLEAN instead of the expected PBMParameter SEQUENCE. Because
the ASN1_TYPE value union overlays the boolean int on the pointer field, ppval
comes back as a bogus non-NULL pointer (e.g. 0xff).

Fixes CVE-2026-63076

Reviewed-by: Milan Broz <[email protected]>
Reviewed-by: Norbert Pocs <[email protected]>
Merge-date: Sat Aug 22 06:11:13 2026


  Commit: bf84721c2548351176e367e6de505792f0118dc6
      https://github.com/openssl/openssl/commit/bf84721c2548351176e367e6de505792f0118dc6
  Author: Neil Horman <[email protected]>
  Date:   2026-08-24 (Mon, 24 Aug 2026)

  Changed paths:
    M include/internal/quic_ackm.h
    M ssl/quic/quic_ackm.c
    M ssl/quic/quic_txp.c

  Log Message:
  -----------
  Don't store ACK-only frames in TX history for QUIC.

When QUIC sends an ACK-only frame, there is no expectation that the
peer will ack that ack (i.e. it is itself not ack-eliciting).  However,
our implementation stores these frames in the TX history regardless.  In and
of itself thats ok, but if a malicious client establishes a connection,
and then drives the connection such that ack-only frames are forced from
the peer (i.e. by sending numerous ping frames), and then withholding
any subseqent acks for ack-eliciting data, like legitimate data, said
malicious client can force inappropriate memory growth on the server,
leading to potential DOS attacks.

Don't store any ACK-only frames in the TX history to address this.  Record it in
our TX history so that the send window moves forward appropriately, but for
ack-only frames, immediately remove it, since we don't expect to get an ack for
them anyway.

Initially authored by Opal Wright <[email protected]>

The initial proposal had some shortcommings in which the highest pn
acked value was not accounted for which I have fixed with the assistance
of Claude

Assisted-by: Anthopic Sonnet 5

Fixes CVE-2026-63075

Reviewed-by: Saša Nedvědický <[email protected]>
Reviewed-by: Bob Beck <[email protected]>
Merge-date: Mon Aug 24 12:13:31 2026


  Commit: f77767a6c76072b081fee230d0e7f4ed4d6e4830
      https://github.com/openssl/openssl/commit/f77767a6c76072b081fee230d0e7f4ed4d6e4830
  Author: Neil Horman <[email protected]>
  Date:   2026-08-24 (Mon, 24 Aug 2026)

  Changed paths:
    M test/build.info
    A test/cmp_extracerts_dos_test.c
    M test/recipes/65-test_cmp_msg.t

  Log Message:
  -----------
  Add a test for restricting growth in cmp cert cache

Test to ensure that if certs are rejected we don't add them unboundedly
to the cmp contexts cert cache.

Assisted-by: Claude sonnet 4.6
Reviewed-by: Milan Broz <[email protected]>
Reviewed-by: Tomas Mraz <[email protected]>
Merge-date: Mon Aug 24 12:42:21 2026


  Commit: 01e567978a55fba18142a230380c31296049fae7
      https://github.com/openssl/openssl/commit/01e567978a55fba18142a230380c31296049fae7
  Author: Neil Horman <[email protected]>
  Date:   2026-08-24 (Mon, 24 Aug 2026)

  Changed paths:
    M crypto/cmp/cmp_vfy.c

  Log Message:
  -----------
  Fix unbounded cert cache growth in cmp

If a remote user sends cmp messages to a server with a list of
extraCerts and the message is rejected, the extraCerts from the message
remain in the server contexts untrusted certificate stack.  This exposes
servers with long lived ctx objects to denial of service attacks in
which an attacker sends messages intending to be rejected with a large
list of additional cerificated repeatedly, forcing the server to store
them indefinately.

Fix it by rolling back the added extra certs if the message is rejected,
using the same method we do when the context is configured to not do
caching at all.

Fixes openssl/srt#224

Fixes CVE-2026-63074

Reviewed-by: Milan Broz <[email protected]>
Reviewed-by: Tomas Mraz <[email protected]>
Merge-date: Mon Aug 24 12:42:21 2026


  Commit: 581aaa0f0a35d214740f0fe1f5283ec41f1212e1
      https://github.com/openssl/openssl/commit/581aaa0f0a35d214740f0fe1f5283ec41f1212e1
  Author: Viktor Dukhovni <[email protected]>
  Date:   2026-08-24 (Mon, 24 Aug 2026)

  Changed paths:
    M ssl/t1_lib.c
    M test/rpktest.c

  Log Message:
  -----------
  Handle signature_algorithms_cert extension in key-only context

Servers or clients that configure only a private key in
expectation of always negotiating use of RFC7250 raw public keys
failed to handle the "signature_algorithms_cert" extension.

The issue is now resolved and the RPK tests now check that
key-only configurations are robust also when the extension
is sent by the peer.

Key-only configurations are quite uncommon.  As a best practice,
RPK-capable servers and clients pair their private key with a
(possibly self-signed) certificate, enabling fallback to X.509
handshakes with non-RPK peers.

Fixes CVE-2026-14457

Reviewed-by: Eugene Syromiatnikov <[email protected]>
Reviewed-by: Tomas Mraz <[email protected]>
Reviewed-by: Norbert Pocs <[email protected]>
Merge-date: Mon Aug 24 12:49:16 2026


  Commit: 6a0acc072b4d37a7cac1252a29c1ce1f00c5ec29
      https://github.com/openssl/openssl/commit/6a0acc072b4d37a7cac1252a29c1ce1f00c5ec29
  Author: Norbert Pocs <[email protected]>
  Date:   2026-08-24 (Mon, 24 Aug 2026)

  Changed paths:
    M crypto/cmp/cmp_vfy.c

  Log Message:
  -----------
  CMP unexpected sender DN used as format string in ERR_raise_data()

ossl_cmp_msg_check_update() converts an unexpected CMP response sender DN with
X509_NAME_oneline() and passes that peer-controlled string directly as the
format argument to ERR_raise_data(). Printable percent characters survive the
DN conversion, so a sender such as CN=%s%n reaches vsnprintf() as active format
syntax without matching varargs.

Fixes: CVE-2026-63073

Original patch by: Filipe Casal of Trail of Bits in collaboration with OpenAI

Signed-off-by: Norbert Pocs <[email protected]>
Reviewed-by: Milan Broz <[email protected]>
Reviewed-by: Igor Ustinov <[email protected]>
Merge-date: Mon Aug 24 13:01:47 2026


  Commit: 1951c3cbd9d5101e027a1eb126f26c3c758f6cc0
      https://github.com/openssl/openssl/commit/1951c3cbd9d5101e027a1eb126f26c3c758f6cc0
  Author: Norbert Pocs <[email protected]>
  Date:   2026-08-24 (Mon, 24 Aug 2026)

  Changed paths:
    M test/cmp_vfy_test.c

  Log Message:
  -----------
  Add test for CVE-2026-63073

Signed-off-by: Norbert Pocs <[email protected]>
Reviewed-by: Milan Broz <[email protected]>
Reviewed-by: Igor Ustinov <[email protected]>
Merge-date: Mon Aug 24 13:01:48 2026


  Commit: 2a3dac874c8057c1f0186849bf1ede1ae7b6b756
      https://github.com/openssl/openssl/commit/2a3dac874c8057c1f0186849bf1ede1ae7b6b756
  Author: Daniel Kubec <[email protected]>
  Date:   2026-08-24 (Mon, 24 Aug 2026)

  Changed paths:
    M crypto/cms/cms_kari.c
    M crypto/cms/cms_kemri.c

  Log Message:
  -----------
  Fix heap buffer overflow (8-byte OOB write) in AES-WRAP-PAD unwrap

On its integrity-failure paths that primitive writes and cleanses up to inlen
bytes of the output buffer. Size the buffer for that worst case so a failed
unwrap cannot write past the allocation.

Fixes CVE-2026-63072

Reviewed-by: Milan Broz <[email protected]>
Reviewed-by: Norbert Pocs <[email protected]>
Merge-date: Mon Aug 24 14:38:35 2026


  Commit: 35c6d22998b3307429242112ff1ba06aac7ea7e0
      https://github.com/openssl/openssl/commit/35c6d22998b3307429242112ff1ba06aac7ea7e0
  Author: Daniel Kubec <[email protected]>
  Date:   2026-08-24 (Mon, 24 Aug 2026)

  Changed paths:
    M test/cmsapitest.c
    M test/recipes/80-test_cmsapi.t

  Log Message:
  -----------
  Add test for CVE-2026-63072

Assisted-by: Claude:claude-fable-5
Reviewed-by: Milan Broz <[email protected]>
Reviewed-by: Norbert Pocs <[email protected]>
Merge-date: Mon Aug 24 14:38:35 2026


  Commit: f52ffc11b90737ac89083909618dc2e1f42c561c
      https://github.com/openssl/openssl/commit/f52ffc11b90737ac89083909618dc2e1f42c561c
  Author: Matt Caswell <[email protected]>
  Date:   2026-08-24 (Mon, 24 Aug 2026)

  Changed paths:
    M ssl/record/methods/dtls_meth.c

  Log Message:
  -----------
  Avoid full read buffer allocation when buffering DTLS next-epoch records

dtls_rlayer_buffer_record() buffers records that arrive early for the
next epoch while a handshake is in progress. It did this by taking
ownership of the entire live read buffer (sized for the largest
possible record, ~16.7KB) and allocating a brand new one to carry on
reading, regardless of how small the buffered record actually was.
With the queue capped at 100 entries, a peer could send around 100
tiny bogus next-epoch records (~14 bytes each on the wire) and force
around 1.7MB of heap allocation per connection.

Instead, copy only the record's own on-wire bytes (header and
ciphertext) into the queue entry, and leave the live read buffer
untouched. Memory use is now proportional to what the peer actually
sends.

Fixes CVE-2026-54874

Assisted-by: Claude:claude-sonnet-4-6
Reviewed-by: Milan Broz <[email protected]>
Reviewed-by: Tomas Mraz <[email protected]>
Reviewed-by: Andrew Dinh <[email protected]>
Merge-date: Mon Aug 24 15:38:39 2026


  Commit: 7892e226b3e39a384e3578a0201d20255c902800
      https://github.com/openssl/openssl/commit/7892e226b3e39a384e3578a0201d20255c902800
  Author: Matt Caswell <[email protected]>
  Date:   2026-08-24 (Mon, 24 Aug 2026)

  Changed paths:
    M ssl/record/methods/dtls_meth.c

  Log Message:
  -----------
  ssl/record/methods/dtls_meth.c: lower the unprocessed_rcds queue limit

100 buffered next-epoch records is far more than a normal handshake
ever needs. A peer that has already completed its side of the epoch
transition may send more than one record under the new epoch before
we catch up and bump our own receive epoch - for example, application
data sent immediately once the peer considers the handshake done -
but real-world bursts like that are still small. Now that each entry
only costs as much memory as the record actually received, the limit
mainly serves as a ceiling on worst-case per-connection memory use, so
lower it to 16 to keep that ceiling smaller while still leaving ample
headroom over legitimate usage.

Assisted-by: Claude:claude-sonnet-4-6
Reviewed-by: Milan Broz <[email protected]>
Reviewed-by: Tomas Mraz <[email protected]>
Reviewed-by: Andrew Dinh <[email protected]>
Merge-date: Mon Aug 24 15:38:40 2026


  Commit: 48f5785425ee6b5316f8e5f921978397ba632cc6
      https://github.com/openssl/openssl/commit/48f5785425ee6b5316f8e5f921978397ba632cc6
  Author: Matt Caswell <[email protected]>
  Date:   2026-08-24 (Mon, 24 Aug 2026)

  Changed paths:
    M ssl/record/methods/dtls_meth.c
    M ssl/record/methods/recmethod_local.h

  Log Message:
  -----------
  ssl/record: remove dead DTLS processed_rcds record queue

rl->processed_rcds and the functions that serviced it
(dtls_copy_rlayer_record(), dtls_retrieve_rlayer_buffered_record())
were unreachable: nothing in the codebase ever inserted a record into
that queue, so the only consumer of it - the check at the top of
dtls_get_more_records() - always saw an empty queue. The real
mechanism for handing buffered next-epoch records to the next epoch's
record layer is the unrelated forwarding code in dtls_free(), which
pushes the raw bytes from rl->unprocessed_rcds onto rl->next.

Assisted-by: Claude:claude-sonnet-4-6
Reviewed-by: Milan Broz <[email protected]>
Reviewed-by: Tomas Mraz <[email protected]>
Reviewed-by: Andrew Dinh <[email protected]>
Merge-date: Mon Aug 24 15:38:41 2026


  Commit: 70cebd74d3592f5272945501b58a60374c4e13af
      https://github.com/openssl/openssl/commit/70cebd74d3592f5272945501b58a60374c4e13af
  Author: Alexandr Nedvedicky <[email protected]>
  Date:   2026-08-24 (Mon, 24 Aug 2026)

  Changed paths:
    M include/internal/quic_record_rx.h
    M ssl/quic/quic_port.c
    M ssl/quic/quic_record_rx.c

  Log Message:
  -----------
  Avoid double free of qrx in port_default_packet_handler()

port_default_packet_handler() may perform double free of qrx
when channel creation fails. The port_default_packet_handler()
transfers ownership of qrx to channel/connection via call to
port_bind_channel(). The port_bind_channel() however may
release the qrx when channel can not be bound. The error is
then detected in port_default_packet_handler() which then agains
releases qrx for the second time.

The fix is to add a reference counter to QRX object so transfer
of ownership between port_default_packet_handler() and QUIC_CHANNEL
can be handled safely.

Fixes CVE-2026-18798

Reviewed-by: Igor Ustinov <[email protected]>
Reviewed-by: Andrew Dinh <[email protected]>
Merge-date: Mon Aug 24 15:47:02 2026


  Commit: e0640cc881fafa1c7458c7104f497d7f9d79c35a
      https://github.com/openssl/openssl/commit/e0640cc881fafa1c7458c7104f497d7f9d79c35a
  Author: Eugene Syromiatnikov <[email protected]>
  Date:   2026-08-25 (Tue, 25 Aug 2026)

  Changed paths:
    M CHANGES.md

  Log Message:
  -----------
  CHANGES.md: rephrase TLS 1.3 ticket lifetime cap change log record

Complements: 7aa9ffab4525 "Enforce RFC 8446 ticket lifetime limit for TLS 1.3 client"
Signed-off-by: Eugene Syromiatnikov <[email protected]>
Reviewed-by: Milan Broz <[email protected]>
Reviewed-by: Tomas Mraz <[email protected]>
Reviewed-by: Bob Beck <[email protected]>
Merge-date: Tue Aug 25 11:35:47 2026


  Commit: a0a2ec74062a2a5bf9fa4e2564eaee473d7dae91
      https://github.com/openssl/openssl/commit/a0a2ec74062a2a5bf9fa4e2564eaee473d7dae91
  Author: Eugene Syromiatnikov <[email protected]>
  Date:   2026-08-25 (Tue, 25 Aug 2026)

  Changed paths:
    M CHANGES.md
    M NEWS.md

  Log Message:
  -----------
  CHANGES.md, NEWS.md: reorder HollowByte change log record, add missing period

Move HollowByte change log record after records with assigned CVE
numbers and severity ratings, add period at the end of the lead
sentence, add a link to the PR in the comment.

Complements: 659de2429f07 "Update CHANGES/NEWS to mention the HollowByte fix"
Signed-off-by: Eugene Syromiatnikov <[email protected]>
Reviewed-by: Milan Broz <[email protected]>
Reviewed-by: Tomas Mraz <[email protected]>
Reviewed-by: Bob Beck <[email protected]>
Merge-date: Tue Aug 25 11:35:49 2026


  Commit: e3004fd1e308fdc0792b3bee6988ebf7c5dad160
      https://github.com/openssl/openssl/commit/e3004fd1e308fdc0792b3bee6988ebf7c5dad160
  Author: Eugene Syromiatnikov <[email protected]>
  Date:   2026-08-25 (Tue, 25 Aug 2026)

  Changed paths:
    M CHANGES.md
    M NEWS.md

  Log Message:
  -----------
  CHANGES.md, NEWS.md: update for 3.6.4

3.6.4 CHANGES.md includes the following:
 * CVE-2026-14456, CVE-2026-14457, CVE-2026-18798, CVE-2026-54874,
   CVE-2026-54876, CVE-2026-63072, CVE-2026-63073, CVE-2026-63074,
   CVE-2026-63075, CVE-2026-63076, CVE-2026-75803
 * https://github.com/openssl/openssl/pull/31174
   "Enforce RFC 8446 ticket lifetime limit for TLS 1.3 client"
   (already present)
 * https://github.com/openssl/openssl/pull/31572
   "[4.0, 3.6, 3.5, 3.4] Add icx compiler version support in perl asm scripts"
 * https://github.com/openssl/openssl/pull/31749
   "Add documentation for OPENSSL_armcap"
 * https://github.com/openssl/openssl/pull/31764
   "x509: fix OCSP BasicResponse leak during verification"
   (included as CVE-2026-54876)
 * https://github.com/openssl/openssl/pull/32052
   "QUIC server: limit the number of pending connections"
   (included as CVE-2026-14456)
 * https://github.com/openssl/openssl/pull/32259
   "[3.6] Reject explicitly supplied invalid tags and generate tags for empty AEAD messages"
   (included as CVE-2026-75803)
 * https://github.com/openssl/openssl/pull/32427
   "Backport #32256 openssl 4.0 to 3.0"

3.6.4 NEWS.md includes the following:
 * CVE-2026-14456, CVE-2026-14457, CVE-2026-18798, CVE-2026-54874,
   CVE-2026-54876, CVE-2026-63072, CVE-2026-63073, CVE-2026-63074,
   CVE-2026-63075, CVE-2026-63076, CVE-2026-75803
 * https://github.com/openssl/openssl/pull/31764
   "x509: fix OCSP BasicResponse leak during verification"
   (included as CVE-2026-54876)
 * https://github.com/openssl/openssl/pull/32052
   "QUIC server: limit the number of pending connections"
   (included as CVE-2026-14456)
 * https://github.com/openssl/openssl/pull/32259
   "[3.6] Reject explicitly supplied invalid tags and generate tags for empty AEAD messages"
   (included as CVE-2026-75803)
 * https://github.com/openssl/openssl/pull/32427
   "Backport #32256 openssl 4.0 to 3.0"

Signed-off-by: Eugene Syromiatnikov <[email protected]>
Reviewed-by: Milan Broz <[email protected]>
Reviewed-by: Tomas Mraz <[email protected]>
Reviewed-by: Bob Beck <[email protected]>
Merge-date: Tue Aug 25 11:35:50 2026


  Commit: 30e544491153c118dabbe9410f48f8f0a30e741b
      https://github.com/openssl/openssl/commit/30e544491153c118dabbe9410f48f8f0a30e741b
  Author: openssl-machine <[email protected]>
  Date:   2026-08-25 (Tue, 25 Aug 2026)

  Changed paths:
    M apps/lib/s_cb.c
    M apps/lib/vms_term_sock.c
    M crypto/aes/asm/aesni-mb-x86_64.pl
    M crypto/aes/asm/aesni-sha1-x86_64.pl
    M crypto/aes/asm/aesni-sha256-x86_64.pl
    M crypto/bn/asm/rsaz-2k-avx512.pl
    M crypto/bn/asm/rsaz-3k-avx512.pl
    M crypto/bn/asm/rsaz-4k-avx512.pl
    M crypto/bn/asm/rsaz-avx2.pl
    M crypto/bn/asm/rsaz-x86_64.pl
    M crypto/bn/asm/x86_64-mont.pl
    M crypto/bn/asm/x86_64-mont5.pl
    M crypto/bn/bn_add.c
    M crypto/chacha/asm/chacha-x86.pl
    M crypto/chacha/asm/chacha-x86_64.pl
    M crypto/cmp/cmp_protect.c
    M crypto/cms/cms_kari.c
    M crypto/cms/cms_kemri.c
    M crypto/ct/ct_b64.c
    M crypto/ctype.c
    M crypto/dh/dh_backend.c
    M crypto/dh/dh_check.c
    M crypto/dsa/dsa_key.c
    M crypto/ec/asm/ecp_nistz256-x86_64.pl
    M crypto/ec/asm/x25519-x86_64.pl
    M crypto/ec/ec_key.c
    M crypto/ffc/ffc_params_generate.c
    M crypto/hmac/hmac.c
    M crypto/lms/lms_pubkey_decode.c
    M crypto/md5/md5_riscv.c
    M crypto/ml_dsa/ml_dsa_encoders.c
    M crypto/ml_dsa/ml_dsa_matrix.c
    M crypto/ml_dsa/ml_dsa_sample.c
    M crypto/ml_dsa/ml_dsa_sign.c
    M crypto/ml_dsa/ml_dsa_vector.h
    M crypto/ml_kem/ml_kem.c
    M crypto/modes/asm/aes-gcm-avx512.pl
    M crypto/modes/asm/aesni-gcm-x86_64.pl
    M crypto/modes/asm/ghash-x86_64.pl
    M crypto/pem/pvkfmt.c
    M crypto/pkcs12/p12_add.c
    M crypto/poly1305/asm/poly1305-x86.pl
    M crypto/poly1305/asm/poly1305-x86_64.pl
    M crypto/rand/rand_lib.c
    M crypto/rsa/rsa_gen.c
    M crypto/rsa/rsa_ossl.c
    M crypto/sha/asm/sha1-586.pl
    M crypto/sha/asm/sha1-mb-x86_64.pl
    M crypto/sha/asm/sha1-x86_64.pl
    M crypto/sha/asm/sha256-586.pl
    M crypto/sha/asm/sha256-mb-x86_64.pl
    M crypto/sha/asm/sha512-x86_64.pl
    M crypto/sha/sha_riscv.c
    M crypto/slh_dsa/slh_dsa_hash_ctx.c
    M crypto/slh_dsa/slh_dsa_local.h
    M crypto/slh_dsa/slh_fors.c
    M crypto/slh_dsa/slh_hash.c
    M crypto/slh_dsa/slh_hypertree.c
    M crypto/slh_dsa/slh_wots.c
    M crypto/slh_dsa/slh_xmss.c
    M crypto/sm3/asm/sm3-x86_64.pl
    M crypto/sm4/asm/sm4-x86_64.pl
    M crypto/x509/by_dir.c
    M crypto/x509/pcy_cache.c
    M crypto/x509/v3_akid.c
    M crypto/x509/v3_ncons.c
    M crypto/x509/x509_err.c
    M crypto/x509/x509_lu.c
    M crypto/x509/x_crl.c
    M doc/internal/man3/DEFINE_LIST_OF.pod
    M doc/man1/openssl.pod
    M doc/man3/ASN1_INTEGER_get_int64.pod
    M doc/man3/ASN1_aux_cb.pod
    M doc/man3/BIO_s_datagram.pod
    M doc/man3/BIO_s_file.pod
    M doc/man3/BN_generate_prime.pod
    M doc/man3/CMS_EncryptedData_decrypt.pod
    M doc/man3/EVP_PKEY_get_size.pod
    M doc/man3/OPENSSL_init_crypto.pod
    M doc/man3/SSL_CTX_set_msg_callback.pod
    M doc/man3/SSL_CTX_set_verify.pod
    M doc/man3/SSL_get_value_uint.pod
    M doc/man3/SSL_new.pod
    M doc/man3/X509_get_default_cert_file.pod
    M doc/man3/X509_verify_cert.pod
    M doc/man7/fips_module.pod
    M doc/man7/openssl-core_dispatch.h.pod
    M doc/man7/provider-kem.pod
    M fuzz/provider.c
    M include/internal/hashtable.h
    M include/internal/list.h
    M include/internal/quic_ackm.h
    M include/internal/quic_port.h
    M include/internal/quic_record_rx.h
    M include/internal/quic_ssl.h
    M include/openssl/x509err.h
    M providers/baseprov.c
    M providers/fips/fipsprov.c
    M providers/implementations/ciphers/cipher_chacha20_poly1305_hw.c
    M providers/implementations/ciphers/ciphercommon_ccm.c.in
    M providers/implementations/encode_decode/encode_key2ms.c.in
    M providers/implementations/kem/ml_kem_kem.c.in
    M providers/implementations/kem/mlx_kem.c
    M providers/implementations/keymgmt/dh_kmgmt.c
    M providers/implementations/keymgmt/ec_kmgmt.c
    M providers/implementations/keymgmt/ml_dsa_kmgmt.c.in
    M providers/implementations/keymgmt/slh_dsa_kmgmt.c.in
    M providers/implementations/macs/cmac_prov.c.in
    M providers/implementations/rands/drbg_ctr.c.in
    M providers/implementations/rands/drbg_hash.c.in
    M providers/implementations/rands/seeding/rand_unix.c
    M providers/implementations/rands/test_rng.c.in
    M providers/implementations/signature/ml_dsa_sig.c.in
    M providers/implementations/storemgmt/file_store_any2obj.c.in
    M ssl/quic/quic_port_local.h
    M ssl/record/methods/dtls_meth.c
    M ssl/record/methods/recmethod_local.h
    M ssl/record/rec_layer_s3.c
    M ssl/rio/poll_builder.c
    M ssl/rio/poll_builder.h
    M ssl/rio/poll_immediate.c
    M ssl/rio/rio_notifier.c
    M ssl/ssl_cert.c
    M ssl/ssl_local.h
    M ssl/statem/extensions.c
    M test/ca_internals_test.c
    M test/cmp_protect_test.c
    M test/cmp_vfy_test.c
    M test/crltest.c
    M test/helpers/quictestlib.c
    M test/helpers/quictestlib.h
    M test/helpers/ssltestlib.c
    M test/helpers/ssltestlib.h
    M test/list_test.c
    M test/p_test.c
    M test/pairwise_fail_test.c
    M test/pkcs7_test.c
    M test/punycode_test.c
    M test/quic_ackm_test.c
    M test/quic_multistream_test.c
    M test/quic_tserver_test.c
    M test/radix/quic_bindings.c
    M test/radix/quic_ops.c
    M test/recipes/20-test_cli_fips.t
    M test/recipes/30-test_evp_data/evprand.txt
    M test/recipes/30-test_pairwise_fail.t
    M test/recipes/65-test_cmp_msg.t
    M test/recipes/70-test_sslrecords.t
    M test/recipes/80-test_ssl_new.t
    M test/rpktest.c
    M test/secmemtest.c
    M util/perl/TLSProxy/Proxy.pm

  Log Message:
  -----------
  Copyright year updates


Reviewed-by: Neil Horman <[email protected]>
Reviewed-by: Milan Broz <[email protected]>
MergeDate: Tue Aug 25 11:46:18 2026
Release: yes


  Commit: 229ed88e7c87ffbaa657504435267d89bbb39b3a
      https://github.com/openssl/openssl/commit/229ed88e7c87ffbaa657504435267d89bbb39b3a
  Author: openssl-machine <[email protected]>
  Date:   2026-08-25 (Tue, 25 Aug 2026)

  Changed paths:
    M providers/fips-sources.checksums
    M providers/fips.checksum

  Log Message:
  -----------
  make update


Reviewed-by: Neil Horman <[email protected]>
Reviewed-by: Milan Broz <[email protected]>
MergeDate: Tue Aug 25 11:48:34 2026
Release: yes


  Commit: d3c1b1169b3569ff3069e5b399f47b2b28e03d79
      https://github.com/openssl/openssl/commit/d3c1b1169b3569ff3069e5b399f47b2b28e03d79
  Author: openssl-machine <[email protected]>
  Date:   2026-08-25 (Tue, 25 Aug 2026)

  Changed paths:
    M CHANGES.md
    M NEWS.md
    M VERSION.dat

  Log Message:
  -----------
  Prepare for release of 3.6.4


Reviewed-by: Neil Horman <[email protected]>
Reviewed-by: Milan Broz <[email protected]>
MergeDate: Tue Aug 25 11:48:35 2026
Release: yes


  Commit: ae09709c9ef4cd0867d442d5f748c7fa10d4c6bd
      https://github.com/openssl/openssl/commit/ae09709c9ef4cd0867d442d5f748c7fa10d4c6bd
  Author: openssl-machine <[email protected]>
  Date:   2026-08-25 (Tue, 25 Aug 2026)

  Changed paths:
    M CHANGES.md
    M NEWS.md
    M VERSION.dat

  Log Message:
  -----------
  Prepare for 3.6.5


Reviewed-by: Neil Horman <[email protected]>
Reviewed-by: Milan Broz <[email protected]>
MergeDate: Tue Aug 25 11:48:46 2026
Release: yes


Compare: https://github.com/openssl/openssl/compare/ed9cd66bac4d...ae09709c9ef4

To unsubscribe from these emails, change your notification settings at https://github.com/openssl/openssl/settings/notifications

-- 
You received this message because you are subscribed to the Google Groups "openssl-commits" group.
To unsubscribe from this group and stop receiving emails from it, send an email to [email protected].
To view this discussion visit https://groups.google.com/a/openssl.org/d/msgid/openssl-commits/openssl/openssl/push/refs/heads/openssl-3.6/ed9cd6-ae0970%40github.com.
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.