metaforce/hecl/extern/blowfish/blowfish.h

15 lines
295 B
C

#ifdef __cplusplus
extern "C" {
#endif
#include <stdlib.h>
#include <stdint.h>
void Blowfish_encipher(unsigned long *xl, unsigned long *xr);
void Blowfish_decipher(unsigned long *xl, unsigned long *xr);
uint64_t Blowfish_hash(void* buf, size_t len);
#ifdef __cplusplus
}
#endif