diff options
author | Mikael Magnusson <mikma@users.sourceforge.net> | 2024-11-18 18:35:26 +0100 |
---|---|---|
committer | Mikael Magnusson <mikma@users.sourceforge.net> | 2024-11-22 12:59:13 +0100 |
commit | 0badc88d7a39f431cbc53ba6be61113b1f2d638d (patch) | |
tree | ef04e31b801c36b0396d2b6683f6ecf675957c18 /jsdoc/conf.json | |
parent | c626e488ba7c1b3c5932dc887402b9ba4c320f29 (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/conf.json')
-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", |