diff options
author | tb <> | 2024-01-13 11:12:32 +0000 |
---|---|---|
committer | tb <> | 2024-01-13 11:12:32 +0000 |
commit | 0a0c4510c63b3ed05c4a35d0175ce78900516389 (patch) | |
tree | 1d0d3014d5a1c67e1005627f9e1d12882bc1f6c8 /src/lib | |
parent | 9fffb87f5d35d0387d2fef05868f79d200d8a912 (diff) | |
download | openbsd-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.c | 47 | ||||
-rw-r--r-- | src/lib/libcrypto/evp/names.c | 20 |
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 | } |
1717 | LCRYPTO_ALIAS(OBJ_NAME_do_all); | 1720 | LCRYPTO_ALIAS(OBJ_NAME_do_all); |
1721 | |||
1722 | static int | ||
1723 | cipher_cmp(const void *a, const void *b) | ||
1724 | { | ||
1725 | return strcmp(a, ((const struct cipher_name *)b)->name); | ||
1726 | } | ||
1727 | |||
1728 | const EVP_CIPHER * | ||
1729 | EVP_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 | |||
1743 | static int | ||
1744 | digest_cmp(const void *a, const void *b) | ||
1745 | { | ||
1746 | return strcmp(a, ((const struct digest_name *)b)->name); | ||
1747 | } | ||
1748 | |||
1749 | const EVP_MD * | ||
1750 | EVP_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 | ||
116 | const EVP_CIPHER * | ||
117 | EVP_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 | |||
125 | const EVP_MD * | ||
126 | EVP_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 | |||
134 | void | 116 | void |
135 | EVP_cleanup(void) | 117 | EVP_cleanup(void) |
136 | { | 118 | { |