]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
Mention the concept of providers in NEWS.md and CHANGES.md
authorRichard Levitte <levitte@openssl.org>
Tue, 7 Sep 2021 09:28:12 +0000 (11:28 +0200)
committerRichard Levitte <levitte@openssl.org>
Tue, 7 Sep 2021 11:16:09 +0000 (13:16 +0200)
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/16528)

(cherry picked from commit 4c4ab4d7efdf8c9b49c9838742a0fcd7321d88ff)

CHANGES.md
NEWS.md

index 0b3004d1a825a7026784085bc6bfb1a42f279f7e..5ed84e657a0c4b8ac537f37e4fc39612cb9780d8 100644 (file)
@@ -1397,6 +1397,23 @@ breaking changes, and mappings for the large list of deprecated functions.
 
    *Raja Ashok*
 
+ * Added a new concept for OpenSSL plugability: providers.  This
+   functionality is designed to replace the ENGINE API and ENGINE
+   implementations, and to be much more dynamic, allowing provider
+   authors to introduce new algorithms among other things, as long as
+   there's an API that supports the algorithm type.
+
+   With this concept comes a new core API for interaction between
+   libcrypto and provider implementations.  Public libcrypto functions
+   that want to use providers do so through this core API.
+
+   The main documentation for this core API is found in
+   doc/man7/provider.pod, doc/man7/provider-base.pod, and they in turn
+   refer to other manuals describing the API specific for supported
+   algorithm types (also called operations).
+
+   *The OpenSSL team*
+
 OpenSSL 1.1.1
 -------------
 
diff --git a/NEWS.md b/NEWS.md
index 011f35a84934d60282d2392349621b9523a62ec2..5d836031c4455825e81ba792dfe09e990677b6ae 100644 (file)
--- a/NEWS.md
+++ b/NEWS.md
@@ -95,6 +95,8 @@ OpenSSL 3.0
   * All of the low-level DH, DSA, ECDH, ECDSA and RSA public key functions
     have been deprecated.
   * SSL 3, TLS 1.0, TLS 1.1, and DTLS 1.0 only work at security level 0.
+  * Added providers, a new pluggability concept that will replace the
+    ENGINE API and ENGINE implementations.
 
 OpenSSL 1.1.1
 -------------