Crypto++  8.0
Free C++ class library of cryptographic schemes
keccakc.h
1 // keccakc.h - Keccak core functions shared between SHA3 and Keccak.
2 // written and placed in the public domain by JW.
3 
4 #ifndef CRYPTOPP_KECCAK_CORE
5 #define CRYPTOPP_KECCAK_CORE
6 
7 NAMESPACE_BEGIN(CryptoPP)
8 
9 void KeccakF1600(word64 *state);
10 
11 NAMESPACE_END
12 
13 #endif // CRYPTOPP_KECCAK_CORE
Crypto++ library namespace.