2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-10-04 15:19:37 +00:00
2015-05-18 21:01:18 -10:00

15 lines
300 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);
int64_t Blowfish_hash(const void* buf, size_t len);
#ifdef __cplusplus
}
#endif