Ubuntu Pastebin

Paste from nullkuhl at Tue, 22 Dec 2015 19:49:04 +0000

Download as text
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
for cipher in aes-256-ecb aes-256-cbc
	do
	$OPENSSL speed $OPT -engine cudamrg -evp $cipher -mr | egrep -e '+H:' -e '+F:' | sed s/+H:// | sed s/+F:22:$cipher:// > ./data/out-filtered-$cipher.txt
	for i in $(seq 1 $RUN) 
		do
		row=$(cat ./data/out-filtered-$cipher.txt |cut -f $i -d :)
		echo $row >> ./data/$cipher.dat
		done
	rm ./data/out-filtered-$cipher.txt
	done
Download as text