From 04a9fe18904afe2f0875da39fb4b35a8e8345274 Mon Sep 17 00:00:00 2001 From: Sadoon Albader Date: Tue, 3 Oct 2023 21:22:49 +0300 Subject: [PATCH] add rudementary test script --- crypto/poly1305/test.sh | 3 +++ 1 file changed, 3 insertions(+) create mode 100755 crypto/poly1305/test.sh diff --git a/crypto/poly1305/test.sh b/crypto/poly1305/test.sh new file mode 100755 index 00000000..f9821e3e --- /dev/null +++ b/crypto/poly1305/test.sh @@ -0,0 +1,3 @@ +#!/bin/bash +make +while true; do ./poly1305-rand-test && python3 poly1305-donna-test.py; done -- 2.30.2