From e0e1097056994bcedb9d857a21e2a94631e48e49 Mon Sep 17 00:00:00 2001 From: abderraouf-adjal Date: Sun, 3 Jan 2016 21:08:09 +0100 Subject: [PATCH] Fix code typo in example --- examples/SpritzBestPractice/SpritzBestPractice.ino | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/SpritzBestPractice/SpritzBestPractice.ino b/examples/SpritzBestPractice/SpritzBestPractice.ino index 9fb8d2c..d1cbfdf 100644 --- a/examples/SpritzBestPractice/SpritzBestPractice.ino +++ b/examples/SpritzBestPractice/SpritzBestPractice.ino @@ -90,12 +90,12 @@ void loop() { } /* If spritz_hash_final() will not wipe hash_ctx data */ -#ifdef WIPE_AFTER_USAGE +#ifndef WIPE_AFTER_USAGE spritz_wipe(&hash_ctx); #endif spritz_wipe(&rng_ctx); - //delay(5000); /* Wait 5s */ + delay(5000); /* Wait 5s */ }