]> git.ipfire.org Git - thirdparty/openssl.git/blame - crypto/engine/engine_list.c
Add some missing CHANGES items.
[thirdparty/openssl.git] / crypto / engine / engine_list.c
CommitLineData
5270e702
RL
1/* crypto/engine/engine_list.c */
2/* Written by Geoff Thorpe (geoff@geoffthorpe.net) for the OpenSSL
3 * project 2000.
4 */
5/* ====================================================================
6 * Copyright (c) 1999 The OpenSSL Project. All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
10 * are met:
11 *
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
14 *
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in
17 * the documentation and/or other materials provided with the
18 * distribution.
19 *
20 * 3. All advertising materials mentioning features or use of this
21 * software must display the following acknowledgment:
22 * "This product includes software developed by the OpenSSL Project
23 * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
24 *
25 * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
26 * endorse or promote products derived from this software without
27 * prior written permission. For written permission, please contact
28 * licensing@OpenSSL.org.
29 *
30 * 5. Products derived from this software may not be called "OpenSSL"
31 * nor may "OpenSSL" appear in their names without prior written
32 * permission of the OpenSSL Project.
33 *
34 * 6. Redistributions of any form whatsoever must retain the following
35 * acknowledgment:
36 * "This product includes software developed by the OpenSSL Project
37 * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
38 *
39 * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
40 * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
41 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
42 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
43 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
44 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
45 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
46 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
48 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
49 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
50 * OF THE POSSIBILITY OF SUCH DAMAGE.
51 * ====================================================================
52 *
53 * This product includes cryptographic software written by Eric Young
54 * (eay@cryptsoft.com). This product includes software written by Tim
55 * Hudson (tjh@cryptsoft.com).
56 *
57 */
58
59#include <openssl/crypto.h>
60#include "cryptlib.h"
61#include "engine_int.h"
62#include <openssl/engine.h>
63
64/* The linked-list of pointers to engine types. engine_list_head
65 * incorporates an implicit structural reference but engine_list_tail
66 * does not - the latter is a computational niceity and only points
67 * to something that is already pointed to by its predecessor in the
68 * list (or engine_list_head itself). In the same way, the use of the
69 * "prev" pointer in each ENGINE is to save excessive list iteration,
70 * it doesn't correspond to an extra structural reference. Hence,
71 * engine_list_head, and each non-null "next" pointer account for
72 * the list itself assuming exactly 1 structural reference on each
73 * list member. */
74static ENGINE *engine_list_head = NULL;
75static ENGINE *engine_list_tail = NULL;
76/* A boolean switch, used to ensure we only initialise once. This
77 * is needed because the engine list may genuinely become empty during
78 * use (so we can't use engine_list_head as an indicator for example. */
79static int engine_list_flag = 0;
79aa04ef 80static int ENGINE_free_util(ENGINE *e, int locked);
5270e702
RL
81
82/* These static functions starting with a lower case "engine_" always
83 * take place when CRYPTO_LOCK_ENGINE has been locked up. */
84static int engine_list_add(ENGINE *e)
85 {
86 int conflict = 0;
87 ENGINE *iterator = NULL;
88
89 if(e == NULL)
90 {
91 ENGINEerr(ENGINE_F_ENGINE_LIST_ADD,
92 ERR_R_PASSED_NULL_PARAMETER);
93 return 0;
94 }
95 iterator = engine_list_head;
96 while(iterator && !conflict)
97 {
98 conflict = (strcmp(iterator->id, e->id) == 0);
99 iterator = iterator->next;
100 }
101 if(conflict)
102 {
103 ENGINEerr(ENGINE_F_ENGINE_LIST_ADD,
104 ENGINE_R_CONFLICTING_ENGINE_ID);
105 return 0;
106 }
107 if(engine_list_head == NULL)
108 {
109 /* We are adding to an empty list. */
110 if(engine_list_tail)
111 {
112 ENGINEerr(ENGINE_F_ENGINE_LIST_ADD,
113 ENGINE_R_INTERNAL_LIST_ERROR);
114 return 0;
115 }
116 engine_list_head = e;
117 e->prev = NULL;
118 }
119 else
120 {
121 /* We are adding to the tail of an existing list. */
122 if((engine_list_tail == NULL) ||
123 (engine_list_tail->next != NULL))
124 {
125 ENGINEerr(ENGINE_F_ENGINE_LIST_ADD,
126 ENGINE_R_INTERNAL_LIST_ERROR);
127 return 0;
128 }
129 engine_list_tail->next = e;
130 e->prev = engine_list_tail;
131 }
132 /* Having the engine in the list assumes a structural
133 * reference. */
134 e->struct_ref++;
b41f836e 135 engine_ref_debug(e, 0, 1)
5270e702
RL
136 /* However it came to be, e is the last item in the list. */
137 engine_list_tail = e;
138 e->next = NULL;
139 return 1;
140 }
141
142static int engine_list_remove(ENGINE *e)
143 {
144 ENGINE *iterator;
145
146 if(e == NULL)
147 {
148 ENGINEerr(ENGINE_F_ENGINE_LIST_REMOVE,
149 ERR_R_PASSED_NULL_PARAMETER);
150 return 0;
151 }
152 /* We need to check that e is in our linked list! */
153 iterator = engine_list_head;
154 while(iterator && (iterator != e))
155 iterator = iterator->next;
156 if(iterator == NULL)
157 {
158 ENGINEerr(ENGINE_F_ENGINE_LIST_REMOVE,
159 ENGINE_R_ENGINE_IS_NOT_IN_LIST);
160 return 0;
161 }
162 /* un-link e from the chain. */
163 if(e->next)
164 e->next->prev = e->prev;
165 if(e->prev)
166 e->prev->next = e->next;
167 /* Correct our head/tail if necessary. */
168 if(engine_list_head == e)
169 engine_list_head = e->next;
170 if(engine_list_tail == e)
171 engine_list_tail = e->prev;
79aa04ef 172 ENGINE_free_util(e, 0);
5270e702
RL
173 return 1;
174 }
175
176/* This check always takes place with CRYPTO_LOCK_ENGINE locked up
177 * so we're synchronised, but we can't call anything that tries to
178 * lock it again! :-) NB: For convenience (and code-clarity) we
179 * don't output errors for failures of the engine_list_add function
180 * as it will generate errors itself. */
181static int engine_internal_check(void)
182 {
b41f836e 183 int toret = 1;
9391f977 184 ENGINE *def_engine1, *def_engine2;
5270e702
RL
185 if(engine_list_flag)
186 return 1;
187 /* This is our first time up, we need to populate the list
188 * with our statically compiled-in engines. */
9391f977
GT
189 def_engine1 = ENGINE_openssl();
190 def_engine2 = ENGINE_dynamic();
191 if(!engine_list_add(def_engine1) ||
192 !engine_list_add(def_engine2))
b41f836e
GT
193 toret = 0;
194 else
195 engine_list_flag = 1;
9391f977
GT
196 ENGINE_free_util(def_engine1, 0);
197 ENGINE_free_util(def_engine2, 0);
5270e702
RL
198 return 1;
199 }
200
201/* Get the first/last "ENGINE" type available. */
202ENGINE *ENGINE_get_first(void)
203 {
204 ENGINE *ret = NULL;
205
206 CRYPTO_r_lock(CRYPTO_LOCK_ENGINE);
207 if(engine_internal_check())
208 {
209 ret = engine_list_head;
210 if(ret)
b41f836e 211 {
5270e702 212 ret->struct_ref++;
b41f836e
GT
213 engine_ref_debug(ret, 0, 1)
214 }
5270e702
RL
215 }
216 CRYPTO_r_unlock(CRYPTO_LOCK_ENGINE);
217 return ret;
218 }
219ENGINE *ENGINE_get_last(void)
220 {
221 ENGINE *ret = NULL;
222
223 CRYPTO_r_lock(CRYPTO_LOCK_ENGINE);
224 if(engine_internal_check())
225 {
226 ret = engine_list_tail;
227 if(ret)
b41f836e 228 {
5270e702 229 ret->struct_ref++;
b41f836e
GT
230 engine_ref_debug(ret, 0, 1)
231 }
5270e702
RL
232 }
233 CRYPTO_r_unlock(CRYPTO_LOCK_ENGINE);
234 return ret;
235 }
236
237/* Iterate to the next/previous "ENGINE" type (NULL = end of the list). */
238ENGINE *ENGINE_get_next(ENGINE *e)
239 {
240 ENGINE *ret = NULL;
241 if(e == NULL)
242 {
243 ENGINEerr(ENGINE_F_ENGINE_GET_NEXT,
244 ERR_R_PASSED_NULL_PARAMETER);
245 return 0;
246 }
247 CRYPTO_r_lock(CRYPTO_LOCK_ENGINE);
248 ret = e->next;
5270e702 249 if(ret)
b41f836e 250 {
ea3a429e 251 /* Return a valid structural refernce to the next ENGINE */
5270e702 252 ret->struct_ref++;
b41f836e
GT
253 engine_ref_debug(ret, 0, 1)
254 }
5270e702 255 CRYPTO_r_unlock(CRYPTO_LOCK_ENGINE);
ea3a429e
GT
256 /* Release the structural reference to the previous ENGINE */
257 ENGINE_free(e);
5270e702
RL
258 return ret;
259 }
260ENGINE *ENGINE_get_prev(ENGINE *e)
261 {
262 ENGINE *ret = NULL;
263 if(e == NULL)
264 {
265 ENGINEerr(ENGINE_F_ENGINE_GET_PREV,
266 ERR_R_PASSED_NULL_PARAMETER);
267 return 0;
268 }
269 CRYPTO_r_lock(CRYPTO_LOCK_ENGINE);
270 ret = e->prev;
5270e702 271 if(ret)
b41f836e 272 {
ea3a429e 273 /* Return a valid structural reference to the next ENGINE */
5270e702 274 ret->struct_ref++;
b41f836e
GT
275 engine_ref_debug(ret, 0, 1)
276 }
5270e702 277 CRYPTO_r_unlock(CRYPTO_LOCK_ENGINE);
ea3a429e
GT
278 /* Release the structural reference to the previous ENGINE */
279 ENGINE_free(e);
5270e702
RL
280 return ret;
281 }
282
283/* Add another "ENGINE" type into the list. */
284int ENGINE_add(ENGINE *e)
285 {
286 int to_return = 1;
287 if(e == NULL)
288 {
289 ENGINEerr(ENGINE_F_ENGINE_ADD,
290 ERR_R_PASSED_NULL_PARAMETER);
291 return 0;
292 }
293 if((e->id == NULL) || (e->name == NULL))
294 {
295 ENGINEerr(ENGINE_F_ENGINE_ADD,
296 ENGINE_R_ID_OR_NAME_MISSING);
297 }
298 CRYPTO_w_lock(CRYPTO_LOCK_ENGINE);
299 if(!engine_internal_check() || !engine_list_add(e))
300 {
301 ENGINEerr(ENGINE_F_ENGINE_ADD,
302 ENGINE_R_INTERNAL_LIST_ERROR);
303 to_return = 0;
304 }
305 CRYPTO_w_unlock(CRYPTO_LOCK_ENGINE);
306 return to_return;
307 }
308
309/* Remove an existing "ENGINE" type from the array. */
310int ENGINE_remove(ENGINE *e)
311 {
312 int to_return = 1;
313 if(e == NULL)
314 {
315 ENGINEerr(ENGINE_F_ENGINE_REMOVE,
316 ERR_R_PASSED_NULL_PARAMETER);
317 return 0;
318 }
319 CRYPTO_w_lock(CRYPTO_LOCK_ENGINE);
320 if(!engine_internal_check() || !engine_list_remove(e))
321 {
322 ENGINEerr(ENGINE_F_ENGINE_REMOVE,
323 ENGINE_R_INTERNAL_LIST_ERROR);
324 to_return = 0;
325 }
326 CRYPTO_w_unlock(CRYPTO_LOCK_ENGINE);
327 return to_return;
328 }
329
330ENGINE *ENGINE_by_id(const char *id)
331 {
0ce5f3e4 332 ENGINE *iterator = NULL, *cp = NULL;
5270e702
RL
333 if(id == NULL)
334 {
335 ENGINEerr(ENGINE_F_ENGINE_BY_ID,
336 ERR_R_PASSED_NULL_PARAMETER);
337 return NULL;
338 }
339 CRYPTO_r_lock(CRYPTO_LOCK_ENGINE);
340 if(!engine_internal_check())
341 ENGINEerr(ENGINE_F_ENGINE_BY_ID,
342 ENGINE_R_INTERNAL_LIST_ERROR);
343 else
344 {
345 iterator = engine_list_head;
346 while(iterator && (strcmp(id, iterator->id) != 0))
347 iterator = iterator->next;
348 if(iterator)
0ce5f3e4
GT
349 {
350 /* We need to return a structural reference. If this is
351 * a "dynamic" ENGINE type, make a duplicate - otherwise
352 * increment the existing ENGINE's reference count. */
353 if(iterator->flags & ENGINE_FLAGS_BY_ID_COPY)
354 {
355 cp = ENGINE_new();
356 if(!cp)
357 iterator = NULL;
358 else
359 {
360 ENGINE_cpy(cp, iterator);
361 iterator = cp;
362 }
363 }
364 else
b41f836e 365 {
0ce5f3e4 366 iterator->struct_ref++;
b41f836e
GT
367 engine_ref_debug(iterator, 0, 1)
368 }
0ce5f3e4 369 }
5270e702
RL
370 }
371 CRYPTO_r_unlock(CRYPTO_LOCK_ENGINE);
372 if(iterator == NULL)
373 ENGINEerr(ENGINE_F_ENGINE_BY_ID,
374 ENGINE_R_NO_SUCH_ENGINE);
375 return iterator;
376 }
377
5270e702
RL
378ENGINE *ENGINE_new(void)
379 {
380 ENGINE *ret;
381
382 ret = (ENGINE *)OPENSSL_malloc(sizeof(ENGINE));
383 if(ret == NULL)
384 {
385 ENGINEerr(ENGINE_F_ENGINE_NEW, ERR_R_MALLOC_FAILURE);
386 return NULL;
387 }
388 memset(ret, 0, sizeof(ENGINE));
5270e702 389 ret->struct_ref = 1;
b41f836e 390 engine_ref_debug(ret, 0, 1)
79aa04ef 391 CRYPTO_new_ex_data(CRYPTO_EX_INDEX_ENGINE, ret, &ret->ex_data);
5270e702
RL
392 return ret;
393 }
5270e702 394
79aa04ef 395static int ENGINE_free_util(ENGINE *e, int locked)
5270e702
RL
396 {
397 int i;
398
399 if(e == NULL)
400 {
401 ENGINEerr(ENGINE_F_ENGINE_FREE,
402 ERR_R_PASSED_NULL_PARAMETER);
403 return 0;
404 }
79aa04ef
GT
405 if(locked)
406 i = CRYPTO_add(&e->struct_ref,-1,CRYPTO_LOCK_ENGINE);
407 else
408 i = --e->struct_ref;
b41f836e 409 engine_ref_debug(e, 0, -1)
5270e702
RL
410 if (i > 0) return 1;
411#ifdef REF_CHECK
412 if (i < 0)
413 {
b41f836e 414 fprintf(stderr,"ENGINE_free, bad structural reference count\n");
5270e702
RL
415 abort();
416 }
417#endif
354c3ace 418 sk_ENGINE_EVP_CIPHER_pop_free(e->ciphers,ENGINE_free_engine_cipher);
79aa04ef 419 CRYPTO_free_ex_data(CRYPTO_EX_INDEX_ENGINE, e, &e->ex_data);
dcd87618 420 OPENSSL_free(e);
5270e702
RL
421 return 1;
422 }
423
79aa04ef 424int ENGINE_free(ENGINE *e)
853b1eb4 425 {
79aa04ef 426 return ENGINE_free_util(e, 1);
853b1eb4
BL
427 }
428
0ce5f3e4
GT
429int ENGINE_get_ex_new_index(long argl, void *argp, CRYPTO_EX_new *new_func,
430 CRYPTO_EX_dup *dup_func, CRYPTO_EX_free *free_func)
431 {
79aa04ef
GT
432 return CRYPTO_get_ex_new_index(CRYPTO_EX_INDEX_ENGINE, argl, argp,
433 new_func, dup_func, free_func);
0ce5f3e4
GT
434 }
435
436int ENGINE_set_ex_data(ENGINE *e, int idx, void *arg)
437 {
438 return(CRYPTO_set_ex_data(&e->ex_data, idx, arg));
439 }
440
441void *ENGINE_get_ex_data(const ENGINE *e, int idx)
442 {
443 return(CRYPTO_get_ex_data(&e->ex_data, idx));
444 }
445
a679116f 446void ENGINE_cleanup(void)
b41f836e
GT
447 {
448 ENGINE *iterator = engine_list_head;
449
450 while(iterator != NULL)
451 {
452 ENGINE_remove(iterator);
453 iterator = engine_list_head;
454 }
455 engine_list_flag = 0;
456 /* Also unset any "default" ENGINEs that may have been set up (a default
457 * constitutes a functional reference on an ENGINE and there's one for
458 * each algorithm). */
459 ENGINE_clear_defaults();
460 return;
461 }
a679116f 462
5270e702
RL
463int ENGINE_set_id(ENGINE *e, const char *id)
464 {
d54bf145 465 if(id == NULL)
5270e702
RL
466 {
467 ENGINEerr(ENGINE_F_ENGINE_SET_ID,
468 ERR_R_PASSED_NULL_PARAMETER);
469 return 0;
470 }
471 e->id = id;
472 return 1;
473 }
474
475int ENGINE_set_name(ENGINE *e, const char *name)
476 {
d54bf145 477 if(name == NULL)
5270e702
RL
478 {
479 ENGINEerr(ENGINE_F_ENGINE_SET_NAME,
480 ERR_R_PASSED_NULL_PARAMETER);
481 return 0;
482 }
483 e->name = name;
484 return 1;
485 }
486
10e473e9 487int ENGINE_set_RSA(ENGINE *e, const RSA_METHOD *rsa_meth)
5270e702 488 {
9e78e6c3 489#ifndef OPENSSL_NO_RSA
5270e702
RL
490 e->rsa_meth = rsa_meth;
491 return 1;
9e78e6c3 492#else
b41f836e 493 return 0;
9e78e6c3 494#endif
5270e702
RL
495 }
496
a4aba800 497int ENGINE_set_DSA(ENGINE *e, const DSA_METHOD *dsa_meth)
5270e702 498 {
9e78e6c3 499#ifndef OPENSSL_NO_DSA
5270e702
RL
500 e->dsa_meth = dsa_meth;
501 return 1;
9e78e6c3 502#else
b41f836e 503 return 0;
9e78e6c3 504#endif
5270e702
RL
505 }
506
f971ccb2 507int ENGINE_set_DH(ENGINE *e, const DH_METHOD *dh_meth)
5270e702 508 {
9e78e6c3 509#ifndef OPENSSL_NO_DH
5270e702
RL
510 e->dh_meth = dh_meth;
511 return 1;
9e78e6c3 512#else
b41f836e 513 return 0;
9e78e6c3 514#endif
5270e702
RL
515 }
516
d54bf145 517int ENGINE_set_RAND(ENGINE *e, const RAND_METHOD *rand_meth)
5270e702 518 {
5270e702
RL
519 e->rand_meth = rand_meth;
520 return 1;
521 }
522
523int ENGINE_set_BN_mod_exp(ENGINE *e, BN_MOD_EXP bn_mod_exp)
524 {
5270e702
RL
525 e->bn_mod_exp = bn_mod_exp;
526 return 1;
527 }
528
529int ENGINE_set_BN_mod_exp_crt(ENGINE *e, BN_MOD_EXP_CRT bn_mod_exp_crt)
530 {
5270e702
RL
531 e->bn_mod_exp_crt = bn_mod_exp_crt;
532 return 1;
533 }
534
535int ENGINE_set_init_function(ENGINE *e, ENGINE_GEN_INT_FUNC_PTR init_f)
536 {
5270e702
RL
537 e->init = init_f;
538 return 1;
539 }
540
541int ENGINE_set_finish_function(ENGINE *e, ENGINE_GEN_INT_FUNC_PTR finish_f)
542 {
5270e702
RL
543 e->finish = finish_f;
544 return 1;
545 }
546
547int ENGINE_set_ctrl_function(ENGINE *e, ENGINE_CTRL_FUNC_PTR ctrl_f)
548 {
5270e702
RL
549 e->ctrl = ctrl_f;
550 return 1;
551 }
552
d54bf145
GT
553int ENGINE_set_load_privkey_function(ENGINE *e, ENGINE_LOAD_KEY_PTR loadpriv_f)
554 {
555 e->load_privkey = loadpriv_f;
556 return 1;
557 }
558
559int ENGINE_set_load_pubkey_function(ENGINE *e, ENGINE_LOAD_KEY_PTR loadpub_f)
560 {
561 e->load_pubkey = loadpub_f;
562 return 1;
563 }
564
565int ENGINE_set_flags(ENGINE *e, int flags)
566 {
567 e->flags = flags;
568 return 1;
569 }
570
40fcda29
GT
571int ENGINE_set_cmd_defns(ENGINE *e, const ENGINE_CMD_DEFN *defns)
572 {
573 e->cmd_defns = defns;
574 return 1;
575 }
576
d54bf145
GT
577int ENGINE_cpy(ENGINE *dest, const ENGINE *src)
578 {
579 if(ENGINE_set_id(dest, ENGINE_get_id(src)) &&
580 ENGINE_set_name(dest, ENGINE_get_name(src)) &&
9e78e6c3 581#ifndef OPENSSL_NO_RSA
d54bf145 582 ENGINE_set_RSA(dest, ENGINE_get_RSA(src)) &&
9e78e6c3
RL
583#endif
584#ifndef OPENSSL_NO_RSA
d54bf145 585 ENGINE_set_DSA(dest, ENGINE_get_DSA(src)) &&
9e78e6c3
RL
586#endif
587#ifndef OPENSSL_NO_RSA
d54bf145 588 ENGINE_set_DH(dest, ENGINE_get_DH(src)) &&
9e78e6c3 589#endif
d54bf145
GT
590 ENGINE_set_RAND(dest, ENGINE_get_RAND(src)) &&
591 ENGINE_set_BN_mod_exp(dest,
592 ENGINE_get_BN_mod_exp(src)) &&
593 ENGINE_set_BN_mod_exp_crt(dest,
594 ENGINE_get_BN_mod_exp_crt(src)) &&
595 ENGINE_set_init_function(dest,
596 ENGINE_get_init_function(src)) &&
597 ENGINE_set_finish_function(dest,
598 ENGINE_get_finish_function(src)) &&
599 ENGINE_set_ctrl_function(dest,
600 ENGINE_get_ctrl_function(src)) &&
601 ENGINE_set_load_privkey_function(dest,
602 ENGINE_get_load_privkey_function(src)) &&
603 ENGINE_set_load_pubkey_function(dest,
604 ENGINE_get_load_pubkey_function(src)) &&
40fcda29
GT
605 ENGINE_set_flags(dest, ENGINE_get_flags(src)) &&
606 ENGINE_set_cmd_defns(dest, ENGINE_get_cmd_defns(src)))
d54bf145
GT
607 return 1;
608 return 0;
609 }
610
611const char *ENGINE_get_id(const ENGINE *e)
5270e702 612 {
5270e702
RL
613 return e->id;
614 }
615
d54bf145 616const char *ENGINE_get_name(const ENGINE *e)
5270e702 617 {
5270e702
RL
618 return e->name;
619 }
620
d54bf145 621const RSA_METHOD *ENGINE_get_RSA(const ENGINE *e)
5270e702 622 {
5270e702
RL
623 return e->rsa_meth;
624 }
625
d54bf145 626const DSA_METHOD *ENGINE_get_DSA(const ENGINE *e)
5270e702 627 {
5270e702
RL
628 return e->dsa_meth;
629 }
630
d54bf145 631const DH_METHOD *ENGINE_get_DH(const ENGINE *e)
5270e702 632 {
5270e702
RL
633 return e->dh_meth;
634 }
635
d54bf145 636const RAND_METHOD *ENGINE_get_RAND(const ENGINE *e)
5270e702 637 {
5270e702
RL
638 return e->rand_meth;
639 }
640
d54bf145 641BN_MOD_EXP ENGINE_get_BN_mod_exp(const ENGINE *e)
5270e702 642 {
5270e702
RL
643 return e->bn_mod_exp;
644 }
645
d54bf145 646BN_MOD_EXP_CRT ENGINE_get_BN_mod_exp_crt(const ENGINE *e)
5270e702 647 {
5270e702
RL
648 return e->bn_mod_exp_crt;
649 }
650
d54bf145 651ENGINE_GEN_INT_FUNC_PTR ENGINE_get_init_function(const ENGINE *e)
5270e702 652 {
5270e702
RL
653 return e->init;
654 }
655
d54bf145 656ENGINE_GEN_INT_FUNC_PTR ENGINE_get_finish_function(const ENGINE *e)
5270e702 657 {
5270e702
RL
658 return e->finish;
659 }
660
d54bf145 661ENGINE_CTRL_FUNC_PTR ENGINE_get_ctrl_function(const ENGINE *e)
5270e702 662 {
5270e702
RL
663 return e->ctrl;
664 }
665
d54bf145
GT
666ENGINE_LOAD_KEY_PTR ENGINE_get_load_privkey_function(const ENGINE *e)
667 {
668 return e->load_privkey;
669 }
670
671ENGINE_LOAD_KEY_PTR ENGINE_get_load_pubkey_function(const ENGINE *e)
672 {
673 return e->load_pubkey;
674 }
675
676int ENGINE_get_flags(const ENGINE *e)
677 {
678 return e->flags;
679 }
40fcda29
GT
680
681const ENGINE_CMD_DEFN *ENGINE_get_cmd_defns(const ENGINE *e)
682 {
683 return e->cmd_defns;
684 }