From 200ebca86abc2f5535cf02fc64f1b379a9fede5f Mon Sep 17 00:00:00 2001 From: Sadoon Albader Date: Tue, 3 Oct 2023 21:29:38 +0300 Subject: [PATCH] fixed another serious bug, C should output to CSV --- crypto/poly1305/test.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/crypto/poly1305/test.sh b/crypto/poly1305/test.sh index f9821e3e..4216278d 100755 --- a/crypto/poly1305/test.sh +++ b/crypto/poly1305/test.sh @@ -1,3 +1,7 @@ #!/bin/bash make -while true; do ./poly1305-rand-test && python3 poly1305-donna-test.py; done +while true +do + ./poly1305-rand-test > rand.csv + python3 poly1305-donna-test.py +done -- 2.30.2