Mercurial > dropbear
view src/headers/tomcrypt_misc.h @ 196:704bb050935f libtomcrypt
makefile fixup for Dropbear
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Mon, 09 May 2005 12:00:08 +0000 |
parents | 1c15b283127b |
children | 39d5d58461d6 |
line wrap: on
line source
/* ---- 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); extern const char *crypt_build_settings;