aboutsummaryrefslogtreecommitdiffstats
path: root/extra/libkeccak_state_wipe.c
diff options
context:
space:
mode:
Diffstat (limited to 'extra/libkeccak_state_wipe.c')
-rw-r--r--extra/libkeccak_state_wipe.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/extra/libkeccak_state_wipe.c b/extra/libkeccak_state_wipe.c
new file mode 100644
index 0000000..728f72f
--- /dev/null
+++ b/extra/libkeccak_state_wipe.c
@@ -0,0 +1,15 @@
+/* See LICENSE file for copyright and license details. */
+#include "../common.h"
+
+
+/**
+ * Wipe sensitive data without 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);
+}