You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
693 B
24 lines
693 B
9 years ago
|
/* ---- LTC_BASE64 Routines ---- */
|
||
|
#ifdef LTC_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);
|
||
|
|
||
|
extern const char *crypt_build_settings;
|
||
|
|
||
|
/* ---- HMM ---- */
|
||
|
int crypt_fsa(void *mp, ...);
|
||
|
|
||
|
/* $Source: /cvs/libtom/libtomcrypt/src/headers/tomcrypt_misc.h,v $ */
|
||
|
/* $Revision: 1.5 $ */
|
||
|
/* $Date: 2007/05/12 14:32:35 $ */
|