dropbear 2016.73
[tomato.git] / release / src / router / dropbear / libtomcrypt / src / misc / zeromem.c
blob9f6ba9bfbe212ea2ae419fbff309e067fda85745
1 /* LibTomCrypt, modular cryptographic library -- Tom St Denis
3 * LibTomCrypt is a library that provides various cryptographic
4 * algorithms in a highly modular and flexible manner.
6 * The library is free for all purposes without any express
7 * guarantee it works.
9 * Tom St Denis, tomstdenis@gmail.com, http://libtomcrypt.com
11 #include "tomcrypt.h"
12 #include "dbhelpers.h"
14 /**
15 @file zeromem.c
16 Zero a block of memory, Tom St Denis
19 /**
20 Zero a block of memory
21 @param out The destination of the area to zero
22 @param outlen The length of the area to zero (octets)
24 void zeromem(void *out, size_t outlen)
26 m_burn(out, outlen);
29 /* $Source: /cvs/libtom/libtomcrypt/src/misc/zeromem.c,v $ */
30 /* $Revision: 1.6 $ */
31 /* $Date: 2006/06/09 01:38:13 $ */