Son CV dans un terminal web en Javascript!
https://terminal-cv.gregandev.fr
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
599 B
16 lines
599 B
/* module.h - helper for dynamically loading crypto module */
|
|
/*
|
|
* Copyright 2020-2021 Howard Chu, Symas Corp.
|
|
* All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted only as authorized by the Symas
|
|
* Dual-Use License.
|
|
*
|
|
* A copy of this license is available in the file LICENSE in the
|
|
* source distribution.
|
|
*/
|
|
|
|
void *mlm_load(const char *file, const char *name, MDB_crypto_funcs **mcf_ptr, char **errmsg);
|
|
void mlm_unload(void *lm);
|
|
void *mlm_setup(MDB_env *env, const char *file, const char *password, char **errmsg);
|
|
|