2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-10-04 20:39:35 +00:00
2015-07-22 09:14:50 -10:00

15 lines
283 B
C

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