Mercurial > dropbear
view mycrypt_misc.h @ 50:c61e66431001 libtomcrypt
Merge of the normal Dropbear makefile:
- Don't include mpi.o, since it does Bad Things (tm) (wrt LTM)
- Don't try to make clean in tests if it doesn't exist (infinite looping
makefiles, mmmmm)
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Sat, 07 Aug 2004 16:33:31 +0000 |
parents | 09ab3354aa21 |
children | 7ed585a2c53b |
line wrap: on
line source
/* ---- 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 ---- */ extern void zeromem(void *dst, size_t len); extern void burn_stack(unsigned long len); extern const char *error_to_string(int err); extern 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