mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
35 lines
1014 B
Plaintext
35 lines
1014 B
Plaintext
/*
|
|
* Copyright (C) 2016 INRIA
|
|
*
|
|
* This file is subject to the terms and conditions of the GNU Lesser
|
|
* General Public License v2.1. See the file LICENSE in the top level
|
|
* directory for more details.
|
|
*/
|
|
|
|
/**
|
|
* @defgroup sys_hashes Hashes
|
|
* @ingroup sys
|
|
*
|
|
* @brief A collection of hash algorithms. RIOT supports some checksum
|
|
* hash algorithms, keyed and unkeyed cryptographic hash algorithms
|
|
* and non cryptographic hash algorithms.
|
|
*/
|
|
|
|
/**
|
|
* @defgroup sys_hashes_non_crypto Non-cryptographic hash functions
|
|
* @ingroup sys_hashes
|
|
* @brief A collection of non-cryptographic hash algorithms.
|
|
*/
|
|
|
|
/**
|
|
* @defgroup sys_hashes_unkeyed Unkeyed cryptographic hash functions
|
|
* @ingroup sys_hashes
|
|
* @brief A collection of unkeyed cryptographic hash algorithms.
|
|
*/
|
|
|
|
/**
|
|
* @defgroup sys_hashes_keyed Keyed cryptographic hash functions
|
|
* @ingroup sys_hashes
|
|
* @brief A collection of keyed cryptographic hash algorithms.
|
|
*/
|