tomcrypt/src/headers/tomcrypt_misc.h

24 lines
614 B
C
Raw Normal View History

2007-07-20 17:48:02 +00:00
/* ---- LTC_BASE64 Routines ---- */
#ifdef LTC_BASE64
2012-07-26 14:43:15 +02:00
int base64_encode(const unsigned char *in, unsigned long len,
2004-12-30 23:55:53 +00:00
unsigned char *out, unsigned long *outlen);
2012-07-26 14:43:15 +02:00
int base64_decode(const unsigned char *in, unsigned long len,
2004-12-30 23:55:53 +00:00
unsigned char *out, unsigned long *outlen);
#endif
/* ---- MEM routines ---- */
void zeromem(volatile void *dst, size_t len);
2004-12-30 23:55:53 +00:00
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$ */