2004-12-30 23:55:53 +00:00
|
|
|
/* ---- BASE64 Routines ---- */
|
|
|
|
#ifdef BASE64
|
|
|
|
int base64_encode(const unsigned char *in, unsigned long len,
|
|
|
|
unsigned char *out, unsigned long *outlen);
|
|
|
|
|
|
|
|
int base64_decode(const unsigned char *in, unsigned long len,
|
|
|
|
unsigned char *out, unsigned long *outlen);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* ---- MEM routines ---- */
|
|
|
|
void zeromem(void *dst, size_t len);
|
|
|
|
void burn_stack(unsigned long len);
|
|
|
|
|
|
|
|
const char *error_to_string(int err);
|
|
|
|
|
|
|
|
extern const char *crypt_build_settings;
|
2005-06-09 00:08:13 +00:00
|
|
|
|
2006-11-17 14:21:24 +00:00
|
|
|
/* ---- HMM ---- */
|
|
|
|
int crypt_fsa(void *mp, ...);
|
|
|
|
|
2005-06-09 00:08:13 +00:00
|
|
|
/* $Source$ */
|
|
|
|
/* $Revision$ */
|
|
|
|
/* $Date$ */
|