summaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authortb <>2024-01-13 11:12:32 +0000
committertb <>2024-01-13 11:12:32 +0000
commit0a0c4510c63b3ed05c4a35d0175ce78900516389 (patch)
tree1d0d3014d5a1c67e1005627f9e1d12882bc1f6c8 /src/lib
parent9fffb87f5d35d0387d2fef05868f79d200d8a912 (diff)
downloadopenbsd-0a0c4510c63b3ed05c4a35d0175ce78900516389.tar.gz
openbsd-0a0c4510c63b3ed05c4a35d0175ce78900516389.tar.bz2
openbsd-0a0c4510c63b3ed05c4a35d0175ce78900516389.zip
Reimplement EVP_get_{cipher,digest}byname()
Instead of a hashtable lookup do a bsearch() over the static table. This needs about the same number of strcmp and is a lot simpler. ok jsing
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/libcrypto/evp/evp_names.c47
-rw-r--r--src/lib/libcrypto/evp/names.c20
2 files changed, 47 insertions, 20 deletions
diff --git a/src/lib/libcrypto/evp/evp_names.c b/src/lib/libcrypto/evp/evp_names.c
index b5d3b95b45..660e23f66e 100644
--- a/src/lib/libcrypto/evp/evp_names.c
+++ b/src/lib/libcrypto/evp/evp_names.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: evp_names.c,v 1.3 2024/01/13 11:08:39 tb Exp $ */ 1/* $OpenBSD: evp_names.c,v 1.4 2024/01/13 11:12:32 tb Exp $ */
2/* 2/*
3 * Copyright (c) 2023 Theo Buehler <tb@openbsd.org> 3 * Copyright (c) 2023 Theo Buehler <tb@openbsd.org>
4 * 4 *
@@ -18,6 +18,9 @@
18#include <openssl/evp.h> 18#include <openssl/evp.h>
19#include <openssl/objects.h> 19#include <openssl/objects.h>
20 20
21#include <stdlib.h>
22#include <string.h>
23
21/* 24/*
22 * In the following two structs, .name is the lookup name that is used 25 * In the following two structs, .name is the lookup name that is used
23 * for EVP_get_cipherbyname() and EVP_get_digestbyname(), while .alias 26 * for EVP_get_cipherbyname() and EVP_get_digestbyname(), while .alias
@@ -1715,3 +1718,45 @@ OBJ_NAME_do_all(int type, void (*fn)(const OBJ_NAME *, void *), void *arg)
1715 OBJ_NAME_do_all_sorted(type, fn, arg); 1718 OBJ_NAME_do_all_sorted(type, fn, arg);
1716} 1719}
1717LCRYPTO_ALIAS(OBJ_NAME_do_all); 1720LCRYPTO_ALIAS(OBJ_NAME_do_all);
1721
1722static int
1723cipher_cmp(const void *a, const void *b)
1724{
1725 return strcmp(a, ((const struct cipher_name *)b)->name);
1726}
1727
1728const EVP_CIPHER *
1729EVP_get_cipherbyname(const char *name)
1730{
1731 const struct cipher_name *cipher;
1732
1733 if (!OPENSSL_init_crypto(0, NULL))
1734 return NULL;
1735
1736 if ((cipher = bsearch(name, cipher_names, N_CIPHER_NAMES,
1737 sizeof(*cipher), cipher_cmp)) == NULL)
1738 return NULL;
1739
1740 return cipher->cipher();
1741}
1742
1743static int
1744digest_cmp(const void *a, const void *b)
1745{
1746 return strcmp(a, ((const struct digest_name *)b)->name);
1747}
1748
1749const EVP_MD *
1750EVP_get_digestbyname(const char *name)
1751{
1752 const struct digest_name *digest;
1753
1754 if (!OPENSSL_init_crypto(0, NULL))
1755 return NULL;
1756
1757 if ((digest = bsearch(name, digest_names, N_DIGEST_NAMES,
1758 sizeof(*digest), digest_cmp)) == NULL)
1759 return NULL;
1760
1761 return digest->digest();
1762}
diff --git a/src/lib/libcrypto/evp/names.c b/src/lib/libcrypto/evp/names.c
index 7f5b455088..8cc6d04ce3 100644
--- a/src/lib/libcrypto/evp/names.c
+++ b/src/lib/libcrypto/evp/names.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: names.c,v 1.23 2024/01/13 11:08:39 tb Exp $ */ 1/* $OpenBSD: names.c,v 1.24 2024/01/13 11:12:32 tb Exp $ */
2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) 2/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
3 * All rights reserved. 3 * All rights reserved.
4 * 4 *
@@ -113,24 +113,6 @@ EVP_add_digest(const EVP_MD *md)
113 return (r); 113 return (r);
114} 114}
115 115
116const EVP_CIPHER *
117EVP_get_cipherbyname(const char *name)
118{
119 if (!OPENSSL_init_crypto(0, NULL))
120 return NULL;
121
122 return (const EVP_CIPHER *)OBJ_NAME_get(name, OBJ_NAME_TYPE_CIPHER_METH);
123}
124
125const EVP_MD *
126EVP_get_digestbyname(const char *name)
127{
128 if (!OPENSSL_init_crypto(0, NULL))
129 return NULL;
130
131 return (const EVP_MD *)OBJ_NAME_get(name, OBJ_NAME_TYPE_MD_METH);
132}
133
134void 116void
135EVP_cleanup(void) 117EVP_cleanup(void)
136{ 118{