]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - tools/regression/geom_eli/onetime-a.t
This commit was generated by cvs2svn to compensate for changes in r167802,
[FreeBSD/FreeBSD.git] / tools / regression / geom_eli / onetime-a.t
1 #!/bin/sh
2 # $FreeBSD$
3
4 base=`basename $0`
5 no=45
6 sectors=100
7
8 echo "1..540"
9
10 i=1
11 for cipher in aes:0 aes:128 aes:192 aes:256 \
12     3des:0 3des:192 \
13     blowfish:0 blowfish:128 blowfish:160 blowfish:192 blowfish:224 \
14     blowfish:256 blowfish:288 blowfish:320 blowfish:352 blowfish:384 \
15     blowfish:416 blowfish:448; do
16         ealgo=${cipher%%:*}
17         keylen=${cipher##*:}
18         for aalgo in hmac/md5 hmac/sha1 hmac/ripemd160 hmac/sha256 hmac/sha384 hmac/sha512; do
19                 for secsize in 512 1024 2048 4096 8192; do
20                         rnd=`mktemp /tmp/$base.XXXXXX` || exit 1
21                         mdconfig -a -t malloc -s `expr $secsize \* $sectors + 512`b -u $no || exit 1
22
23                         geli onetime -a $aalgo -e $ealgo -l $keylen -s $secsize md${no}
24
25                         secs=`diskinfo /dev/md${no}.eli | awk '{print $4}'`
26
27                         dd if=/dev/random of=${rnd} bs=${secsize} count=${secs} >/dev/null 2>&1
28                         dd if=${rnd} of=/dev/md${no}.eli bs=${secsize} count=${secs} 2>/dev/null
29
30                         md_rnd=`dd if=${rnd} bs=${secsize} count=${secs} 2>/dev/null | md5`
31                         md_ddev=`dd if=/dev/md${no}.eli bs=${secsize} count=${secs} 2>/dev/null | md5`
32
33                         if [ ${md_rnd} = ${md_ddev} ]; then
34                                 echo "ok $i - aalgo=${aalgo} ealgo=${ealgo} keylen=${keylen} sec=${secsize}"
35                         else
36                                 echo "not ok $i - aalgo=${aalgo} ealgo=${ealgo} keylen=${keylen} sec=${secsize}"
37                         fi
38                         i=$((i+1))
39
40                         geli detach md${no}
41                         rm -f $rnd
42                         mdconfig -d -u $no
43                 done
44         done
45 done