| // Copyright lowRISC contributors. |
| // Licensed under the Apache License, Version 2.0, see LICENSE for details. |
| // SPDX-License-Identifier: Apache-2.0 |
| |
| #ifndef OPENTITAN_SW_DEVICE_LIB_CRYPTO_INCLUDE_HASH_H_ |
| #define OPENTITAN_SW_DEVICE_LIB_CRYPTO_INCLUDE_HASH_H_ |
| |
| /** |
| * @file |
| * @brief Hash functions for the OpenTitan cryptography library. |
| * |
| * Supports both SHA2 and SHA3 hash functions, plus the additional Keccak-based |
| * hash functions SHAKE and cSHAKE. |
| */ |
| |
| #ifdef __cplusplus |
| extern "C" { |
| #endif // __cplusplus |
| |
| #ifdef __cplusplus |
| } // extern "C" |
| #endif // __cplusplus |
| |
| #endif // OPENTITAN_SW_DEVICE_LIB_CRYPTO_INCLUDE_HASH_H_ |