Rocco Rutte:
[apps/madmutt.git] / crypt-mod.c
1 /*
2  * Copyright notice from original mutt:
3  * Copyright (C) 2004 g10 Code GmbH
4  *
5  * This file is part of mutt-ng, see http://www.muttng.org/.
6  * It's licensed under the GNU General Public License,
7  * please see the file GPL in the top level source directory.
8  */
9
10 #if HAVE_CONFIG_H
11 # include "config.h"
12 #endif
13
14 #include "crypt-mod.h"
15 #include "lib/mem.h"
16
17 /* A type an a variable to keep track of registered crypto modules. */
18 typedef struct crypt_module *crypt_module_t;
19
20 struct crypt_module {
21   crypt_module_specs_t specs;
22   crypt_module_t next, *prevp;
23 };
24
25 static crypt_module_t modules;
26
27 /* Register a new crypto module. */
28 void crypto_module_register (crypt_module_specs_t specs)
29 {
30   crypt_module_t module_new = mem_malloc (sizeof (*module_new));
31
32   module_new->specs = specs;
33   module_new->next = modules;
34   if (modules)
35     modules->prevp = &module_new->next;
36   modules = module_new;
37 }
38
39 /* Return the crypto module specs for IDENTIFIER.  This function is
40    usually used via the CRYPT_MOD_CALL[_CHECK] macros. */
41 crypt_module_specs_t crypto_module_lookup (int identifier)
42 {
43   crypt_module_t module = modules;
44
45   while (module && (module->specs->identifier != identifier))
46     module = module->next;
47
48   return module ? module->specs : NULL;
49 }