diff options
author | Mikael Magnusson <mikma@users.sourceforge.net> | 2024-11-18 18:35:26 +0100 |
---|---|---|
committer | Mikael Magnusson <mikma@users.sourceforge.net> | 2025-04-02 20:50:55 +0200 |
commit | 27e76931da212d7756bbcd007e00585a026cc916 (patch) | |
tree | 62219561cc7b5e3868f6b3a02dafde9b843817f9 /jsdoc | |
parent | 4d71a00fd3e4be42a3e160f899a329a4c92d24a6 (diff) |
lib: add crypto.uccrypto
The module crypto.uc uses one of crypto_openssl and crypto_mbedtls
to provide a cryptographic implementation to the user. The crypto_openssl
module is preferred since it supports EdDSA in addition to RSA and ECDSA,
which are also supported by crypto_mbedtls.
Signed-off-by: Mikael Magnusson <mikma@users.sourceforge.net>
Diffstat (limited to 'jsdoc')
-rw-r--r-- | jsdoc/conf.json | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/jsdoc/conf.json b/jsdoc/conf.json index 9d3c995..523243b 100644 --- a/jsdoc/conf.json +++ b/jsdoc/conf.json @@ -5,8 +5,8 @@ }, "source": { "include": ["."], - "exclude": ["CMakeFiles"], - "includePattern": ".+\\.c$" + "exclude": ["CMakeFiles", "tests"], + "includePattern": ".+\\.(c|uc)$" }, "plugins": [ "plugins/markdown", |