From 4a8e897c0e4cdff8f99e6782b51ca68459eea8a0 Mon Sep 17 00:00:00 2001 From: Oleg Hahm Date: Wed, 26 Aug 2015 10:42:50 +0200 Subject: [PATCH] doc: minor fixing for crypto module Moves the crypto module documentation to the right group and streamline the doxygen keywords. --- sys/crypto/doc.txt | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/sys/crypto/doc.txt b/sys/crypto/doc.txt index 261dea442a..73173eb83b 100644 --- a/sys/crypto/doc.txt +++ b/sys/crypto/doc.txt @@ -8,10 +8,12 @@ /** * @defgroup sys_crypto Crypto + * @ingroup sys + * * @brief RIOT provides a collection of block cipher ciphers, different operation modes and cryptographic hash algorithms. * - * \section ciphers Ciphers + * @section ciphers Ciphers * * Riot supports the following block ciphers: * * AES-128 @@ -25,7 +27,7 @@ * the generic API for block ciphers whenever possible. * * Example: - * \code + * @code * #include "crypto/ciphers.h" * * ciphter_t cipher; @@ -36,14 +38,14 @@ * * if (cipher_encrypt(&cipher, plain_text, cipher_text) < 0) * printf("Cipher encryption!\n"); - * \endcode + * @endcode * * If you need to encrypt data of arbitrary size take a look at the different * operation modes like: CBC, CTR or CCM. * * Additional examples can be found in the test suite. * - * \section hashes Hashes + * @section hashes Hashes * * RIOT currently supports sha256 as a cryptographic hash implementation. */