blob: e46a25d0b4f76d1c36d80665fefdb1b800e6d6c8 (
plain) (
tree)
|
|
/* See LICENSE file for copyright and license details. */
#include "common.h"
/**
* Wipe sensitive data wihout freeing any data
*
* @param state The state that should be wipe
*/
void
libkeccak_state_wipe(volatile struct libkeccak_state *state)
{
libkeccak_state_wipe_message(state);
libkeccak_state_wipe_sponge(state);
}
|