summaryrefslogtreecommitdiffstats
path: root/CHANGES.md
diff options
context:
space:
mode:
authorChris Novakovic <chris@chrisn.me.uk>2020-09-03 23:42:56 +0100
committerDmitry Belyavskiy <beldmit@gmail.com>2020-09-11 14:32:27 +0300
commit64713cb10de05c2e3ac63300f4073b11f57287ba (patch)
treeb04238b1ae2aa8d38dbce0fb089e36fec0b65a2f /CHANGES.md
parent0e60ce6334c86d271df5342029639048a635fefa (diff)
apps/ca: allow CRL lastUpdate/nextUpdate fields to be specified
When generating a CRL using the "ca" utility, allow values for the lastUpdate and nextUpdate fields to be specified using the command line options -crl_lastupdate and -crl_nextupdate respectively. Reviewed-by: Tomas Mraz <tmraz@fedoraproject.org> Reviewed-by: Dmitry Belyavskiy <beldmit@gmail.com> (Merged from https://github.com/openssl/openssl/pull/12784)
Diffstat (limited to 'CHANGES.md')
-rw-r--r--CHANGES.md6
1 files changed, 6 insertions, 0 deletions
diff --git a/CHANGES.md b/CHANGES.md
index 0f6880d716..19cccb725d 100644
--- a/CHANGES.md
+++ b/CHANGES.md
@@ -1158,6 +1158,12 @@ OpenSSL 3.0
*Richard Levitte*
+ * Added the options `-crl_lastupdate` and `-crl_nextupdate` to `openssl ca`,
+ allowing the `lastUpdate` and `nextUpdate` fields in the generated CRL to
+ be set explicitly.
+
+ *Chris Novakovic*
+
* Added support for Linux Kernel TLS data-path. The Linux Kernel data-path
improves application performance by removing data copies and providing
applications with zero-copy system calls such as sendfile and splice.