1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

Merge pull request #3714 from OlegHahm/doc_crypto_group

doc: minor fixing for crypto module
This commit is contained in:
Oleg Hahm 2015-08-26 11:43:17 +02:00
commit 299ae78929

View File

@ -8,10 +8,12 @@
/** /**
* @defgroup sys_crypto Crypto * @defgroup sys_crypto Crypto
* @ingroup sys
*
* @brief RIOT provides a collection of block cipher ciphers, different * @brief RIOT provides a collection of block cipher ciphers, different
operation modes and cryptographic hash algorithms. operation modes and cryptographic hash algorithms.
* *
* \section ciphers Ciphers * @section ciphers Ciphers
* *
* Riot supports the following block ciphers: * Riot supports the following block ciphers:
* * AES-128 * * AES-128
@ -25,7 +27,7 @@
* the generic API for block ciphers whenever possible. * the generic API for block ciphers whenever possible.
* *
* Example: * Example:
* \code * @code
* #include "crypto/ciphers.h" * #include "crypto/ciphers.h"
* *
* ciphter_t cipher; * ciphter_t cipher;
@ -36,14 +38,14 @@
* *
* if (cipher_encrypt(&cipher, plain_text, cipher_text) < 0) * if (cipher_encrypt(&cipher, plain_text, cipher_text) < 0)
* printf("Cipher encryption!\n"); * printf("Cipher encryption!\n");
* \endcode * @endcode
* *
* If you need to encrypt data of arbitrary size take a look at the different * If you need to encrypt data of arbitrary size take a look at the different
* operation modes like: CBC, CTR or CCM. * operation modes like: CBC, CTR or CCM.
* *
* Additional examples can be found in the test suite. * Additional examples can be found in the test suite.
* *
* \section hashes Hashes * @section hashes Hashes
* *
* RIOT currently supports sha256 as a cryptographic hash implementation. * RIOT currently supports sha256 as a cryptographic hash implementation.
*/ */