mirror of
https://github.com/shadps4-emu/ext-cryptopp.git
synced 2024-11-23 18:09:48 +00:00
14 lines
312 B
C
14 lines
312 B
C
// keccakc.h - Keccak core functions shared between SHA3 and Keccak.
|
|
// written and placed in the public domain by JW.
|
|
|
|
#ifndef CRYPTOPP_KECCAK_CORE
|
|
#define CRYPTOPP_KECCAK_CORE
|
|
|
|
NAMESPACE_BEGIN(CryptoPP)
|
|
|
|
void KeccakF1600(word64 *state);
|
|
|
|
NAMESPACE_END
|
|
|
|
#endif // CRYPTOPP_KECCAK_CORE
|