2018-04-14 13:43:27 +02:00
|
|
|
/**
|
|
|
|
* @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>
|
|
|
|
* ```
|
2022-04-25 16:05:28 +02:00
|
|
|
*
|
|
|
|
* @see https://github.com/RIOT-OS-pkgmirror/hacl-c_archived
|
|
|
|
* @see https://hacl-star.github.io/
|
|
|
|
* @see https://github.com/project-everest/hacl-star/
|
2018-04-14 13:43:27 +02:00
|
|
|
*/
|