aboutsummaryrefslogtreecommitdiffstats
path: root/jni/ed25519/additions/zeroize.c
diff options
context:
space:
mode:
Diffstat (limited to 'jni/ed25519/additions/zeroize.c')
-rw-r--r--jni/ed25519/additions/zeroize.c17
1 files changed, 17 insertions, 0 deletions
diff --git a/jni/ed25519/additions/zeroize.c b/jni/ed25519/additions/zeroize.c
new file mode 100644
index 00000000..37c1f708
--- /dev/null
+++ b/jni/ed25519/additions/zeroize.c
@@ -0,0 +1,17 @@
+#include "zeroize.h"
+
+void zeroize(unsigned char* b, size_t len)
+{
+ size_t count = 0;
+ unsigned long retval = 0;
+ volatile unsigned char *p = b;
+
+ for (count = 0; count < len; count++)
+ p[count] = 0;
+}
+
+void zeroize_stack()
+{
+ unsigned char m[ZEROIZE_STACK_SIZE];
+ zeroize(m, sizeof m);
+}