2003-03-02 19:59:24 -05: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-02 20:02:42 -05:00
|
|
|
extern void zeromem(void *dst, size_t len);
|
2003-03-02 19:59:24 -05:00
|
|
|
extern void burn_stack(unsigned long len);
|
|
|
|
|
2003-06-15 18:37:45 -04:00
|
|
|
extern const char *error_to_string(int err);
|
2003-12-24 13:59:57 -05:00
|
|
|
extern int mpi_to_ltc_error(int err);
|
2003-03-02 19:59:24 -05:00
|
|
|
|
|
|
|
extern const char *crypt_build_settings;
|