12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- #ifndef SSP_HASH_H
- #define SSP_HASH_H
- #ifdef __cplusplus
- extern "C"
- {
- #endif
- #include "ssp.h"
- void sspMMOHash (uint8 *, uint8, uint8 *, uint16, uint8 *);
- void SSP_KeyedHash (uint8 *M, uint16 bitlen, uint8 *AesKey, uint8 *Cstate);
- #ifdef __cplusplus
- }
- #endif
- #endif
|