Mercurial > dropbear
comparison libtomcrypt/src/headers/tomcrypt_misc.h @ 302:973fccb59ea4 ucc-axis-hack
propagate from branch 'au.asn.ucc.matt.dropbear' (head 11034278bd1917bebcbdc69cf53b1891ce9db121)
to branch 'au.asn.ucc.matt.dropbear.ucc-axis-hack' (head 10a1f614fec73d0820c3f61160d9db409b9beb46)
author | Matt Johnston <matt@ucc.asn.au> |
---|---|
date | Sat, 25 Mar 2006 12:59:58 +0000 |
parents | 1b9e69c058d2 |
children | 0cbe8f6dbf9e |
comparison
equal
deleted
inserted
replaced
299:740e782679be | 302:973fccb59ea4 |
---|---|
1 /* ---- BASE64 Routines ---- */ | |
2 #ifdef BASE64 | |
3 int base64_encode(const unsigned char *in, unsigned long len, | |
4 unsigned char *out, unsigned long *outlen); | |
5 | |
6 int base64_decode(const unsigned char *in, unsigned long len, | |
7 unsigned char *out, unsigned long *outlen); | |
8 #endif | |
9 | |
10 /* ---- MEM routines ---- */ | |
11 void zeromem(void *dst, size_t len); | |
12 void burn_stack(unsigned long len); | |
13 | |
14 const char *error_to_string(int err); | |
15 int mpi_to_ltc_error(int err); | |
16 | |
17 extern const char *crypt_build_settings; | |
18 | |
19 /* $Source: /cvs/libtom/libtomcrypt/src/headers/tomcrypt_misc.h,v $ */ | |
20 /* $Revision: 1.2 $ */ | |
21 /* $Date: 2005/05/05 14:35:58 $ */ |