7 lines
215 B
C
7 lines
215 B
C
|
#ifndef ODO_CRYPT
|
||
|
#define ODO_CRYPT
|
||
|
#include <stdint.h>
|
||
|
//void HashOdo(uint8_t hash[32], const uint8_t* pbegin, const uint8_t* pend, uint32_t key);
|
||
|
void HashOdo(char* hash, const char* pbegin, uint32_t key);
|
||
|
#endif
|