NeoMutt  2024-04-16-36-g75b6fb
Teaching an old dog new tricks
DOXYGEN
Loading...
Searching...
No Matches
crypt_mod.h File Reference

Register crypto modules. More...

#include <stdbool.h>
#include <stdio.h>
#include "lib.h"
+ Include dependency graph for crypt_mod.h:
+ This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Data Structures

struct  CryptModuleSpecs
 

Functions

void crypto_module_register (const struct CryptModuleSpecs *specs)
 Register a new crypto module.
 
const struct CryptModuleSpecscrypto_module_lookup (int identifier)
 Lookup a crypto module by name.
 

Detailed Description

Register crypto modules.

Authors
  • Richard Russon
  • Pietro Cerutti

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/.

Definition in file crypt_mod.h.

Function Documentation

◆ crypto_module_register()

void crypto_module_register ( const struct CryptModuleSpecs specs)

Register a new crypto module.

Parameters
specsAPI functions

Definition at line 54 of file crypt_mod.c.

55{
56 struct CryptModule *module = mutt_mem_calloc(1, sizeof(struct CryptModule));
57 module->specs = specs;
58 STAILQ_INSERT_HEAD(&CryptModules, module, entries);
59}
static struct CryptModuleList CryptModules
Linked list of crypto modules, e.g. CryptModSmimeClassic, CryptModPgpGpgme.
Definition: crypt_mod.c:48
void * mutt_mem_calloc(size_t nmemb, size_t size)
Allocate zeroed memory on the heap.
Definition: memory.c:50
#define STAILQ_INSERT_HEAD(head, elm, field)
Definition: queue.h:383
A crypto plugin module.
Definition: crypt_mod.c:41
const struct CryptModuleSpecs * specs
Crypto module definition.
Definition: crypt_mod.c:42
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ crypto_module_lookup()

const struct CryptModuleSpecs * crypto_module_lookup ( int  identifier)

Lookup a crypto module by name.

Parameters
identifierName, e.g. APPLICATION_PGP
Return values
ptrCrypto module

This function is usually used via the CRYPT_MOD_CALL[_CHECK] macros.

Definition at line 68 of file crypt_mod.c.

69{
70 const struct CryptModule *module = NULL;
71 STAILQ_FOREACH(module, &CryptModules, entries)
72 {
73 if (module->specs->identifier == identifier)
74 {
75 return module->specs;
76 }
77 }
78 return NULL;
79}
#define STAILQ_FOREACH(var, head, field)
Definition: queue.h:352
int identifier
Identifying bit.
Definition: crypt_mod.h:48
+ Here is the caller graph for this function: