tomcrypt/src/headers/tomcrypt_misc.h

24 lines
607 B
C
Raw Normal View History

2007-07-20 17:48:02 +00:00
/* ---- LTC_BASE64 Routines ---- */
#ifdef LTC_BASE64
2004-12-30 23:55:53 +00:00
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);
extern const char *crypt_build_settings;
2005-06-09 00:08:13 +00:00
2006-11-17 14:21:24 +00:00
/* ---- HMM ---- */
int crypt_fsa(void *mp, ...);
2005-06-09 00:08:13 +00:00
/* $Source$ */
/* $Revision$ */
/* $Date$ */