diff options
Diffstat (limited to 'checks')
-rw-r--r-- | checks/ChangeLog | 4 | ||||
-rwxr-xr-x | checks/conventional-mdc.test | 9 |
2 files changed, 11 insertions, 2 deletions
diff --git a/checks/ChangeLog b/checks/ChangeLog index 0af642df2..4fa2cb38b 100644 --- a/checks/ChangeLog +++ b/checks/ChangeLog @@ -1,3 +1,7 @@ +2000-10-18 Werner Koch <[email protected]> + + * conventional-mdc.test: Add Rijndael and fix for empty plain texts. + Thu Feb 10 17:39:44 CET 2000 Werner Koch <[email protected]> * mkdemodirs: Fixed the --clean loop. diff --git a/checks/conventional-mdc.test b/checks/conventional-mdc.test index 7d9616459..760ae0309 100755 --- a/checks/conventional-mdc.test +++ b/checks/conventional-mdc.test @@ -4,8 +4,13 @@ #info Checking conventional encryption for i in 0 1 2 3 9 10 11 19 20 21 22 23 39 40 41 8192 32000 ; do - for ciph in 3des cast5 blowfish twofish; do - dd if=data-80000 of=z bs=1 count=$i 2>/dev/null + for ciph in 3des cast5 blowfish twofish rijndael; do + # *BSD's dd can't cope with a count of 0 + if test "$i" = "0"; then + : >z + else + dd if=data-80000 of=z bs=1 count=$i 2>/dev/null + fi echo "Hier spricht HAL" | $srcdir/run-gpg --passphrase-fd 0 \ --force-mdc --cipher $ciph -c -o x --yes z echo "Hier spricht HAL" | $srcdir/run-gpg --passphrase-fd 0 \ |