]> git.ipfire.org Git - thirdparty/openssl.git/blame - crypto/evp/names.c
In provider implemented methods, save the name number, not the name string
[thirdparty/openssl.git] / crypto / evp / names.c
CommitLineData
62867571 1/*
567db2c1 2 * Copyright 1995-2018 The OpenSSL Project Authors. All Rights Reserved.
d02b48c6 3 *
4a8b0c55 4 * Licensed under the Apache License 2.0 (the "License"). You may not use
62867571
RS
5 * this file except in compliance with the License. You can obtain a copy
6 * in the file LICENSE in the source distribution or at
7 * https://www.openssl.org/source/license.html
d02b48c6
RE
8 */
9
10#include <stdio.h>
b39fc560 11#include "internal/cryptlib.h"
ec577822 12#include <openssl/evp.h>
d2ba8123 13#include <openssl/kdf.h>
176db6dc 14#include "internal/objects.h"
ec577822 15#include <openssl/x509.h>
ab0a14bb 16#include "internal/evp_int.h"
d02b48c6 17
13588350 18int EVP_add_cipher(const EVP_CIPHER *c)
0f113f3e
MC
19{
20 int r;
21
22 if (c == NULL)
23 return 0;
24
25 r = OBJ_NAME_add(OBJ_nid2sn(c->nid), OBJ_NAME_TYPE_CIPHER_METH,
26 (const char *)c);
27 if (r == 0)
26a7d938 28 return 0;
0f113f3e
MC
29 r = OBJ_NAME_add(OBJ_nid2ln(c->nid), OBJ_NAME_TYPE_CIPHER_METH,
30 (const char *)c);
26a7d938 31 return r;
0f113f3e 32}
5ba4bf35 33
13588350 34int EVP_add_digest(const EVP_MD *md)
0f113f3e
MC
35{
36 int r;
37 const char *name;
38
39 name = OBJ_nid2sn(md->type);
40 r = OBJ_NAME_add(name, OBJ_NAME_TYPE_MD_METH, (const char *)md);
41 if (r == 0)
26a7d938 42 return 0;
0f113f3e
MC
43 r = OBJ_NAME_add(OBJ_nid2ln(md->type), OBJ_NAME_TYPE_MD_METH,
44 (const char *)md);
45 if (r == 0)
26a7d938 46 return 0;
0f113f3e
MC
47
48 if (md->pkey_type && md->type != md->pkey_type) {
49 r = OBJ_NAME_add(OBJ_nid2sn(md->pkey_type),
50 OBJ_NAME_TYPE_MD_METH | OBJ_NAME_ALIAS, name);
51 if (r == 0)
26a7d938 52 return 0;
0f113f3e
MC
53 r = OBJ_NAME_add(OBJ_nid2ln(md->pkey_type),
54 OBJ_NAME_TYPE_MD_METH | OBJ_NAME_ALIAS, name);
55 }
26a7d938 56 return r;
0f113f3e 57}
d02b48c6 58
6b691a5c 59const EVP_CIPHER *EVP_get_cipherbyname(const char *name)
0f113f3e
MC
60{
61 const EVP_CIPHER *cp;
d02b48c6 62
0fc32b07
MC
63 if (!OPENSSL_init_crypto(OPENSSL_INIT_ADD_ALL_CIPHERS, NULL))
64 return NULL;
7b9f8f7f 65
0f113f3e 66 cp = (const EVP_CIPHER *)OBJ_NAME_get(name, OBJ_NAME_TYPE_CIPHER_METH);
26a7d938 67 return cp;
0f113f3e 68}
d02b48c6 69
6b691a5c 70const EVP_MD *EVP_get_digestbyname(const char *name)
0f113f3e
MC
71{
72 const EVP_MD *cp;
d02b48c6 73
0fc32b07
MC
74 if (!OPENSSL_init_crypto(OPENSSL_INIT_ADD_ALL_DIGESTS, NULL))
75 return NULL;
7b9f8f7f 76
0f113f3e 77 cp = (const EVP_MD *)OBJ_NAME_get(name, OBJ_NAME_TYPE_MD_METH);
26a7d938 78 return cp;
0f113f3e 79}
d02b48c6 80
b3599dbb 81void evp_cleanup_int(void)
0f113f3e 82{
d2ba8123 83 OBJ_NAME_cleanup(OBJ_NAME_TYPE_KDF_METH);
0f113f3e
MC
84 OBJ_NAME_cleanup(OBJ_NAME_TYPE_CIPHER_METH);
85 OBJ_NAME_cleanup(OBJ_NAME_TYPE_MD_METH);
86 /*
87 * The above calls will only clean out the contents of the name hash
88 * table, but not the hash table itself. The following line does that
89 * part. -- Richard Levitte
90 */
91 OBJ_NAME_cleanup(-1);
92
93 EVP_PBE_cleanup();
0f113f3e 94 OBJ_sigid_free();
0822e89a
PY
95
96 evp_app_cleanup_int();
0f113f3e
MC
97}
98
99struct doall_cipher {
100 void *arg;
101 void (*fn) (const EVP_CIPHER *ciph,
102 const char *from, const char *to, void *arg);
103};
5ba4bf35
DSH
104
105static void do_all_cipher_fn(const OBJ_NAME *nm, void *arg)
0f113f3e
MC
106{
107 struct doall_cipher *dc = arg;
108 if (nm->alias)
109 dc->fn(NULL, nm->name, nm->data, dc->arg);
110 else
111 dc->fn((const EVP_CIPHER *)nm->data, nm->name, NULL, dc->arg);
112}
113
114void EVP_CIPHER_do_all(void (*fn) (const EVP_CIPHER *ciph,
115 const char *from, const char *to, void *x),
116 void *arg)
117{
118 struct doall_cipher dc;
7b9f8f7f 119
0fc32b07 120 /* Ignore errors */
f672aee4 121 OPENSSL_init_crypto(OPENSSL_INIT_ADD_ALL_CIPHERS, NULL);
7b9f8f7f 122
0f113f3e
MC
123 dc.fn = fn;
124 dc.arg = arg;
125 OBJ_NAME_do_all(OBJ_NAME_TYPE_CIPHER_METH, do_all_cipher_fn, &dc);
126}
127
128void EVP_CIPHER_do_all_sorted(void (*fn) (const EVP_CIPHER *ciph,
129 const char *from, const char *to,
130 void *x), void *arg)
131{
132 struct doall_cipher dc;
7b9f8f7f 133
0fc32b07 134 /* Ignore errors */
f672aee4 135 OPENSSL_init_crypto(OPENSSL_INIT_ADD_ALL_CIPHERS, NULL);
7b9f8f7f 136
0f113f3e
MC
137 dc.fn = fn;
138 dc.arg = arg;
139 OBJ_NAME_do_all_sorted(OBJ_NAME_TYPE_CIPHER_METH, do_all_cipher_fn, &dc);
140}
141
142struct doall_md {
143 void *arg;
144 void (*fn) (const EVP_MD *ciph,
145 const char *from, const char *to, void *arg);
146};
5ba4bf35
DSH
147
148static void do_all_md_fn(const OBJ_NAME *nm, void *arg)
0f113f3e
MC
149{
150 struct doall_md *dc = arg;
151 if (nm->alias)
152 dc->fn(NULL, nm->name, nm->data, dc->arg);
153 else
154 dc->fn((const EVP_MD *)nm->data, nm->name, NULL, dc->arg);
155}
156
157void EVP_MD_do_all(void (*fn) (const EVP_MD *md,
158 const char *from, const char *to, void *x),
159 void *arg)
160{
161 struct doall_md dc;
7b9f8f7f 162
0fc32b07 163 /* Ignore errors */
f672aee4 164 OPENSSL_init_crypto(OPENSSL_INIT_ADD_ALL_DIGESTS, NULL);
7b9f8f7f 165
0f113f3e
MC
166 dc.fn = fn;
167 dc.arg = arg;
168 OBJ_NAME_do_all(OBJ_NAME_TYPE_MD_METH, do_all_md_fn, &dc);
169}
170
171void EVP_MD_do_all_sorted(void (*fn) (const EVP_MD *md,
172 const char *from, const char *to,
173 void *x), void *arg)
174{
175 struct doall_md dc;
7b9f8f7f 176
f672aee4 177 OPENSSL_init_crypto(OPENSSL_INIT_ADD_ALL_DIGESTS, NULL);
7b9f8f7f 178
0f113f3e
MC
179 dc.fn = fn;
180 dc.arg = arg;
181 OBJ_NAME_do_all_sorted(OBJ_NAME_TYPE_MD_METH, do_all_md_fn, &dc);
182}