]> git.saurik.com Git - apple/security.git/blame - SecurityTests/cspxutils/perform/aesPerform
Security-57031.1.35.tar.gz
[apple/security.git] / SecurityTests / cspxutils / perform / aesPerform
CommitLineData
d8f41ccd
A
1#! /bin/csh -f
2#
3# run symmteric performance tests on AES, all key sizes and block sizes.
4#
5if ( $#argv < 2 ) then
6 echo Usage: aesPerform iterations bufsize
7 exit(1)
8endif
9#
10set ITER=$argv[1]
11set BUFSIZE=$argv[2]
12#
13cd $LOCAL_BUILD_DIR
14perform $ITER $BUFSIZE a=a e b=128 k=128
15perform $ITER $BUFSIZE a=a e b=128 k=192
16perform $ITER $BUFSIZE a=a e b=128 k=256
17perform $ITER $BUFSIZE a=a e b=192 k=128
18perform $ITER $BUFSIZE a=a e b=192 k=192
19perform $ITER $BUFSIZE a=a e b=192 k=256
20perform $ITER $BUFSIZE a=a e b=256 k=128
21perform $ITER $BUFSIZE a=a e b=256 k=192
22perform $ITER $BUFSIZE a=a e b=256 k=256