]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - tools/regression/geom_eli/onetime-a.t
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.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..1380"
9
10 i=1
11 for cipher in aes:0 aes:128 aes:256 \
12     aes-xts:0 aes-xts:128 aes-xts:256 \
13     aes-cbc:0 aes-cbc:128 aes-cbc:192 aes-cbc:256 \
14     3des:0 3des:192 \
15     3des-cbc:0 3des-cbc:192 \
16     blowfish:0 blowfish:128 blowfish:160 blowfish:192 blowfish:224 \
17     blowfish:256 blowfish:288 blowfish:320 blowfish:352 blowfish:384 \
18     blowfish:416 blowfish:448 \
19     blowfish-cbc:0 blowfish-cbc:128 blowfish-cbc:160 blowfish-cbc:192 blowfish-cbc:224 \
20     blowfish-cbc:256 blowfish-cbc:288 blowfish-cbc:320 blowfish-cbc:352 blowfish-cbc:384 \
21     blowfish-cbc:416 blowfish-cbc:448 \
22     camellia:0 camellia:128 camellia:192 camellia:256 \
23     camellia-cbc:0 camellia-cbc:128 camellia-cbc:192 camellia-cbc:256; do
24         ealgo=${cipher%%:*}
25         keylen=${cipher##*:}
26         for aalgo in hmac/md5 hmac/sha1 hmac/ripemd160 hmac/sha256 hmac/sha384 hmac/sha512; do
27                 for secsize in 512 1024 2048 4096 8192; do
28                         rnd=`mktemp /tmp/$base.XXXXXX` || exit 1
29                         mdconfig -a -t malloc -s `expr $secsize \* $sectors + 512`b -u $no || exit 1
30
31                         geli onetime -a $aalgo -e $ealgo -l $keylen -s $secsize md${no} 2>/dev/null
32
33                         secs=`diskinfo /dev/md${no}.eli | awk '{print $4}'`
34
35                         dd if=/dev/random of=${rnd} bs=${secsize} count=${secs} >/dev/null 2>&1
36                         dd if=${rnd} of=/dev/md${no}.eli bs=${secsize} count=${secs} 2>/dev/null
37
38                         md_rnd=`dd if=${rnd} bs=${secsize} count=${secs} 2>/dev/null | md5`
39                         md_ddev=`dd if=/dev/md${no}.eli bs=${secsize} count=${secs} 2>/dev/null | md5`
40
41                         if [ ${md_rnd} = ${md_ddev} ]; then
42                                 echo "ok $i - aalgo=${aalgo} ealgo=${ealgo} keylen=${keylen} sec=${secsize}"
43                         else
44                                 echo "not ok $i - aalgo=${aalgo} ealgo=${ealgo} keylen=${keylen} sec=${secsize}"
45                         fi
46                         i=$((i+1))
47
48                         geli detach md${no}
49                         rm -f $rnd
50                         mdconfig -d -u $no
51                 done
52         done
53 done