mirror of
git://git.gnupg.org/gnupg.git
synced 2025-01-08 12:44:23 +01:00
Typo fixes.
This commit is contained in:
parent
ee8a16b96e
commit
c59e59069c
@ -1,3 +1,7 @@
|
||||
2000-10-18 Werner Koch <wk@gnupg.org>
|
||||
|
||||
* conventional-mdc.test: Add Rijndael and fix for empty plain texts.
|
||||
|
||||
Thu Feb 10 17:39:44 CET 2000 Werner Koch <wk@gnupg.de>
|
||||
|
||||
* mkdemodirs: Fixed the --clean loop.
|
||||
|
@ -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 \
|
||||
|
@ -1,6 +1,7 @@
|
||||
2000-10-18 Werner Koch <wk@gnupg.org>
|
||||
|
||||
* misc.c (print_cipher_algo_note): Don't print the nore for AES.
|
||||
* misc.c (print_cipher_algo_note): Don't print the note for AES.
|
||||
Changed wording.
|
||||
|
||||
2000-10-16 Werner Koch <wk@gnupg.org>
|
||||
|
||||
|
@ -234,8 +234,8 @@ print_cipher_algo_note( int algo )
|
||||
|
||||
if( !did_note ) {
|
||||
did_note = 1;
|
||||
log_info(_("this cipher algorithm is depreciated; "
|
||||
"please use a more standard one!\n"));
|
||||
log_info(_("this cipher algorithm is deprecated; "
|
||||
"please use a more standard one!x\n"));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user