forked from RIOT-OS/RIOT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdoc.txt
30 lines (30 loc) · 857 Bytes
/
doc.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/**
* @defgroup pkg_libhydrogen LibHydrogen cryptographic library
* @ingroup pkg
* @brief A lightweight, secure, easy-to-use crypto library suitable for constrained environments.
*
* # LibHydrogen RIOT package
*
* The Hydrogen library is a small, easy-to-use, hard-to-misuse cryptographic
* library. It provides functions for random numbers, generic hashing, key
* derivation, secret-key encryption, public-key signatures, key exchange and
* password hashing.
*
* Full documentation can be found on the [LibHydrogen wiki](https://github.com/jedisct1/libhydrogen/wiki).
*
* ## Usage
*
* Add it as a package in your application's Makefile:
*
* ```makefile
* USEPKG += libhydrogen
* ```
*
* Include the LibHydrogen header in your code:
*
* ```c
* #include "hydrogen.h"
* ```
*
* @see https://github.com/jedisct1/libhydrogen
*/