[openssl] openssl-3.0 update

Dr. Paul Dale pauli at openssl.org
Sun Nov 28 02:58:56 UTC 2021


The branch openssl-3.0 has been updated
       via  4c71c52a6e26f5f1372191f12e418ba8a4a759c9 (commit)
      from  a852c4e731f400deab23600e01db22ee97ff8ac7 (commit)


- Log -----------------------------------------------------------------
commit 4c71c52a6e26f5f1372191f12e418ba8a4a759c9
Author: Pauli <ppzgs1 at gmail.com>
Date:   Fri Nov 26 09:47:40 2021 +1000

    doc: remove non-existent callbacks
    
    These used to exist but were removed before release.
    Updating the documentation was missed.
    
    Fixes #17138
    
    Reviewed-by: Tomas Mraz <tomas at openssl.org>
    (Merged from https://github.com/openssl/openssl/pull/17141)
    
    (cherry picked from commit 6d770c5ba36d43f495b232392cfaa8fa460f17af)

-----------------------------------------------------------------------

Summary of changes:
 doc/man7/provider-base.pod | 11 +----------
 1 file changed, 1 insertion(+), 10 deletions(-)

diff --git a/doc/man7/provider-base.pod b/doc/man7/provider-base.pod
index 0005dc7181..f928934ab7 100644
--- a/doc/man7/provider-base.pod
+++ b/doc/man7/provider-base.pod
@@ -42,11 +42,6 @@ provider-base
   */
  void *CRYPTO_malloc(size_t num, const char *file, int line);
  void *CRYPTO_zalloc(size_t num, const char *file, int line);
- void *CRYPTO_memdup(const void *str, size_t siz,
-                     const char *file, int line);
- char *CRYPTO_strdup(const char *str, const char *file, int line);
- char *CRYPTO_strndup(const char *str, size_t s,
-                      const char *file, int line);
  void CRYPTO_free(void *ptr, const char *file, int line);
  void CRYPTO_clear_free(void *ptr, size_t num,
                         const char *file, int line);
@@ -153,9 +148,6 @@ provider):
  core_obj_create                OSSL_FUNC_CORE_OBJ_CREATE
  CRYPTO_malloc                  OSSL_FUNC_CRYPTO_MALLOC
  CRYPTO_zalloc                  OSSL_FUNC_CRYPTO_ZALLOC
- CRYPTO_memdup                  OSSL_FUNC_CRYPTO_MEMDUP
- CRYPTO_strdup                  OSSL_FUNC_CRYPTO_STRDUP
- CRYPTO_strndup                 OSSL_FUNC_CRYPTO_STRNDUP
  CRYPTO_free                    OSSL_FUNC_CRYPTO_FREE
  CRYPTO_clear_free              OSSL_FUNC_CRYPTO_CLEAR_FREE
  CRYPTO_realloc                 OSSL_FUNC_CRYPTO_REALLOC
@@ -289,8 +281,7 @@ underlying signature or digest algorithm). It returns 1 on success or 0 on
 failure.
 This function is not thread safe.
 
-CRYPTO_malloc(), CRYPTO_zalloc(), CRYPTO_memdup(), CRYPTO_strdup(),
-CRYPTO_strndup(), CRYPTO_free(), CRYPTO_clear_free(),
+CRYPTO_malloc(), CRYPTO_zalloc(), CRYPTO_free(), CRYPTO_clear_free(),
 CRYPTO_realloc(), CRYPTO_clear_realloc(), CRYPTO_secure_malloc(),
 CRYPTO_secure_zalloc(), CRYPTO_secure_free(),
 CRYPTO_secure_clear_free(), CRYPTO_secure_allocated(),


More information about the openssl-commits mailing list