diff options
Diffstat (limited to 'data-analysis-router/ciphers/gather.sh')
| -rw-r--r-- | data-analysis-router/ciphers/gather.sh | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/data-analysis-router/ciphers/gather.sh b/data-analysis-router/ciphers/gather.sh new file mode 100644 index 0000000..735b3c5 --- /dev/null +++ b/data-analysis-router/ciphers/gather.sh @@ -0,0 +1,16 @@ +#!/bin/sh + +CHACHALOG="originalSamples.log" +AESLOG="patchSamples.log" +i=0 + +while [ "$i" -lt 100 ] +do + date >> ${CHACHALOG} + ./networkQARM5 -config rpm.obs.cr -path config -port 4043 >> ${CHACHALOG} + echo "Done with original (CHACHA) run (#${i})" + date >> ${AESLOG} + ./networkQARM5Patch -config rpm.obs.cr -path config -port 4043 >> ${AESLOG} + echo "Done with patch (AES) run (#${i})" + i=`expr $i + 1` +done
\ No newline at end of file |
