diff options
author | kuriyama <kuriyama@FreeBSD.org> | 2001-04-30 03:22:56 +0000 |
---|---|---|
committer | kuriyama <kuriyama@FreeBSD.org> | 2001-04-30 03:22:56 +0000 |
commit | 31acc61e7457d4192fdd9624c5abdb20c08d0007 (patch) | |
tree | 2ede522fcccfc3fb17d914902414c0c6a9aa993a /security/gnupg/files | |
parent | 59c79797868ba5e7524c086a115179bce1c720ea (diff) | |
download | FreeBSD-ports-31acc61e7457d4192fdd9624c5abdb20c08d0007.zip FreeBSD-ports-31acc61e7457d4192fdd9624c5abdb20c08d0007.tar.gz |
Upgrade to 1.0.5.
o The semantics of --verify have changed.
o Corrected hash calculation for input data larger than 512M.
o Large File Support is now working.
o A bunch of new options and commands.
o Keyserver support for the W32 version.
o Better handling of key expiration and subkeys.
o Estonian and Turkish translation.
o The usual fixes and other enhancements.
Diffstat (limited to 'security/gnupg/files')
-rw-r--r-- | security/gnupg/files/patch-misc.c | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/security/gnupg/files/patch-misc.c b/security/gnupg/files/patch-misc.c deleted file mode 100644 index 4520e00..0000000 --- a/security/gnupg/files/patch-misc.c +++ /dev/null @@ -1,31 +0,0 @@ -Hi, - -some folks asked what the message - - gpg: this cipher algorithm is depreciated; please use a more standard one! - -does mean. Yes, gpg 1.0.4 should not emit this message. I forgot -to put the AES cipher algorithm into the list of "good" algorithms. - -Either ignore this message or apply the patch below. - - Werner - - -Index: g10/misc.c -=================================================================== -RCS file: /home/koch/cvs/gnupg/g10/misc.c,v -retrieving revision 1.16.2.4 -diff -u -r1.16.2.4 misc.c ---- g10/misc.c 2000/10/13 15:03:48 1.16.2.4 -+++ g10/misc.c 2000/10/18 13:34:01 -@@ -224,6 +224,9 @@ - || algo == CIPHER_ALGO_CAST5 - || algo == CIPHER_ALGO_BLOWFISH - || algo == CIPHER_ALGO_TWOFISH -+ || algo == CIPHER_ALGO_RIJNDAEL -+ || algo == CIPHER_ALGO_RIJNDAEL192 -+ || algo == CIPHER_ALGO_RIJNDAEL256 - ) - ; - else { |