mirror of
https://github.com/clearml/dropbear
synced 2025-06-26 18:17:32 +00:00
--HG-- branch : libtomcrypt extra : convert_revision : 6abc32a16c5814f6a46957d95c1cc4c5a3f63191
21 lines
615 B
C
21 lines
615 B
C
/* ---- 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);
|
|
int mpi_to_ltc_error(int err);
|
|
|
|
#if 0
|
|
/* Takes up space we don\'t need for Dropbear */
|
|
extern const char *crypt_build_settings;
|
|
#endif
|