1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/pkg/hacl/doc.txt
2022-04-25 16:05:28 +02:00

33 lines
683 B
Plaintext

/**
* @defgroup pkg_hacl HACL* High Assurance Cryptographic Library
* @ingroup pkg
* @ingroup sys_crypto
* @brief Support for HACL* (High Assurance Cryptographic Library)
*
* # HACL* RIOT package
*
* ## Usage
*
* Just add it as a package in your application:
*
* ```makefile
* USEPKG += hacl
* ```
*
* And don't forget to include the header for the HACL* standard API:
*
* ```c
* #include <HACL.h>
* ```
* or for HACL*'s NaCl-compatible API:
*
* ```c
* #include <haclnacl.h>
* ```
*
* @see https://github.com/RIOT-OS-pkgmirror/hacl-c_archived
* @see https://hacl-star.github.io/
* @see https://github.com/project-everest/hacl-star/
*/