summaryrefslogtreecommitdiffstats
path: root/CHANGES.md
diff options
context:
space:
mode:
authorDr. David von Oheimb <David.von.Oheimb@siemens.com>2022-09-12 20:50:28 +0200
committerDr. David von Oheimb <dev@ddvo.net>2023-02-24 08:49:26 +0100
commit65def9de8088ae39d8f251e0b57f1a0f204daa14 (patch)
tree9b4236604d7d4ed956ec0f18633ed65c5cba5fd8 /CHANGES.md
parent6f9e531003fd736e8e96d9a1a57f7763da9722b8 (diff)
CMS_add0_cert: if cert already present, do not throw error but ignore it
Also add checks on failing cert/CRL up_ref calls; improve coding style. Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Paul Dale <pauli@openssl.org> Reviewed-by: David von Oheimb <david.von.oheimb@siemens.com> (Merged from https://github.com/openssl/openssl/pull/19199)
Diffstat (limited to 'CHANGES.md')
-rw-r--r--CHANGES.md7
1 files changed, 7 insertions, 0 deletions
diff --git a/CHANGES.md b/CHANGES.md
index d02feefa6b..b5381e9847 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -168,6 +168,13 @@ OpenSSL 3.2
*David von Oheimb*
+ * `CMS_add0_cert()` and `CMS_add1_cert()` no more throw an error
+ if a certificate to be added is already present.
+ * `CMS_sign_ex()` and `CMS_sign()` now ignore any duplicate certificates
+ in their `certs` argument and no longer throw an error for them.
+
+ *David von Oheimb*
+
* Fixed and extended `util/check-format.pl` for checking adherence to the
coding style <https://www.openssl.org/policies/technical/coding-style.html>.
The checks are meanwhile more complete and yield fewer false positives.