Stop calling OPENSSL_init() internally, since it is a no-op. Also place
authorjsing <jsing@openbsd.org>
Sat, 29 Apr 2017 21:48:43 +0000 (21:48 +0000)
committerjsing <jsing@openbsd.org>
Sat, 29 Apr 2017 21:48:43 +0000 (21:48 +0000)
it under #ifndef LIBRESSL_INTERNAL.

ok beck@

lib/libcrypto/cryptlib.c
lib/libcrypto/crypto.h
lib/libcrypto/evp/names.c

index 1bc245e..f7b783a 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: cryptlib.c,v 1.40 2017/01/29 17:49:22 beck Exp $ */
+/* $OpenBSD: cryptlib.c,v 1.41 2017/04/29 21:48:43 jsing Exp $ */
 /* ====================================================================
  * Copyright (c) 1998-2006 The OpenSSL Project.  All rights reserved.
  *
@@ -403,7 +403,6 @@ CRYPTO_set_locking_callback(void (*func)(int mode, int type,
        /* Calling this here ensures initialisation before any threads
         * are started.
         */
-       OPENSSL_init();
        locking_callback = func;
 }
 
index c1ee78f..068415f 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: crypto.h,v 1.40 2015/09/17 09:51:40 bcook Exp $ */
+/* $OpenBSD: crypto.h,v 1.41 2017/04/29 21:48:43 jsing Exp $ */
 /* ====================================================================
  * Copyright (c) 1998-2006 The OpenSSL Project.  All rights reserved.
  *
@@ -499,9 +499,9 @@ uint64_t OPENSSL_cpu_caps(void);
 
 int OPENSSL_isservice(void);
 
+#ifndef LIBRESSL_INTERNAL
 void OPENSSL_init(void);
 
-#ifndef LIBRESSL_INTERNAL
 /* CRYPTO_memcmp returns zero iff the |len| bytes at |a| and |b| are equal. It
  * takes an amount of time dependent on |len|, but independent of the contents
  * of |a| and |b|. Unlike memcmp, it cannot be used to put elements into a
index 33d7dc8..ebaa3a2 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: names.c,v 1.12 2014/07/11 08:44:48 jsing Exp $ */
+/* $OpenBSD: names.c,v 1.13 2017/04/29 21:48:44 jsing Exp $ */
 /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
  * All rights reserved.
  *
@@ -70,8 +70,6 @@ EVP_add_cipher(const EVP_CIPHER *c)
        if (c == NULL)
                return 0;
 
-       OPENSSL_init();
-
        r = OBJ_NAME_add(OBJ_nid2sn(c->nid), OBJ_NAME_TYPE_CIPHER_METH,
            (const char *)c);
        if (r == 0)
@@ -88,8 +86,6 @@ EVP_add_digest(const EVP_MD *md)
        int r;
        const char *name;
 
-       OPENSSL_init();
-
        name = OBJ_nid2sn(md->type);
        r = OBJ_NAME_add(name, OBJ_NAME_TYPE_MD_METH, (const char *)md);
        if (r == 0)