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

31 lines
562 B
Plaintext
Raw Normal View History

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>
* ```
*
* @see https://github.com/mitls/hacl-c
*/