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
15 Terminate and clear ChaCha state
16 @param st The ChaCha state
17 @return CRYPT_OK on success
19 int chacha_done(chacha_state *st)
21 LTC_ARGCHK(st != NULL);
22 XMEMSET(st, 0, sizeof(chacha_state));
28 /* ref: $Format:%D$ */
29 /* git commit: $Format:%H$ */
30 /* commit time: $Format:%ai$ */