2003-03-03 00:59:24 +00:00
|
|
|
/* ---- BASE64 Routines ---- */
|
|
|
|
#ifdef BASE64
|
|
|
|
extern int base64_encode(const unsigned char *in, unsigned long len,
|
|
|
|
unsigned char *out, unsigned long *outlen);
|
|
|
|
|
|
|
|
extern int base64_decode(const unsigned char *in, unsigned long len,
|
|
|
|
unsigned char *out, unsigned long *outlen);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* ---- MEM routines ---- */
|
2003-03-03 01:02:42 +00:00
|
|
|
extern void zeromem(void *dst, size_t len);
|
2003-03-03 00:59:24 +00:00
|
|
|
extern void burn_stack(unsigned long len);
|
|
|
|
|
2003-06-15 22:37:45 +00:00
|
|
|
extern const char *error_to_string(int err);
|
2003-12-24 18:59:57 +00:00
|
|
|
extern int mpi_to_ltc_error(int err);
|
2003-03-03 00:59:24 +00:00
|
|
|
|
|
|
|
extern const char *crypt_build_settings;
|