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