mirror of
git://git.gnupg.org/gnupg.git
synced 2025-04-12 22:11:29 +02:00
See ChangeLog: Wed Feb 23 10:07:57 CET 2000 Werner Koch
This commit is contained in:
parent
c03e6ee0aa
commit
7ae8d22f9b
2
AUTHORS
2
AUTHORS
@ -13,6 +13,8 @@ Gregory Steuck <steuck@iname.com> Translations [ru]
|
|||||||
|
|
||||||
Edmund GRIMLEY EVANS <edmundo@rano.org> ?????? [eo]
|
Edmund GRIMLEY EVANS <edmundo@rano.org> ?????? [eo]
|
||||||
|
|
||||||
|
Ivo Timmermans <itimmermans@bigfoot.com> ?????? [nl]
|
||||||
|
|
||||||
Janusz Aleksander Urbanowicz <alex@bofh.torun.pl> Translations [po]
|
Janusz Aleksander Urbanowicz <alex@bofh.torun.pl> Translations [po]
|
||||||
|
|
||||||
Michael Roth <mroth@nessie.de> Assignment
|
Michael Roth <mroth@nessie.de> Assignment
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
Wed Feb 23 10:07:57 CET 2000 Werner Koch <wk@gnupg.de>
|
||||||
|
|
||||||
|
* configure.in (ALL_LINGUAS): Add nl.
|
||||||
|
|
||||||
Wed Feb 16 16:25:09 CET 2000 Werner Koch <wk@gnupg.de>
|
Wed Feb 16 16:25:09 CET 2000 Werner Koch <wk@gnupg.de>
|
||||||
|
|
||||||
* configure.in (ALL_LINGUAS): Add Esperanto.
|
* configure.in (ALL_LINGUAS): Add Esperanto.
|
||||||
|
2
NEWS
2
NEWS
@ -17,7 +17,7 @@ Noteworthy changes in the current test release
|
|||||||
* Encryption is now much faster: About 2 times for 1k bit keys
|
* Encryption is now much faster: About 2 times for 1k bit keys
|
||||||
and 8 times for 4k keys.
|
and 8 times for 4k keys.
|
||||||
|
|
||||||
* New encryption keys are generated in way which allows a much
|
* New encryption keys are generated in a way which allows a much
|
||||||
faster decryption.
|
faster decryption.
|
||||||
|
|
||||||
* New command --export-secret-subkeys which outputs the
|
* New command --export-secret-subkeys which outputs the
|
||||||
|
1
THANKS
1
THANKS
@ -46,6 +46,7 @@ Holger Trapp Holger.Trapp@informatik.tu-chemnitz.de
|
|||||||
Hugh Daniel hugh@toad.com
|
Hugh Daniel hugh@toad.com
|
||||||
Huy Le huyle@ugcs.caltech.edu
|
Huy Le huyle@ugcs.caltech.edu
|
||||||
Ian McKellar imckellar@harvestroad.com.au
|
Ian McKellar imckellar@harvestroad.com.au
|
||||||
|
Ivo Timmermans itimmermans@bigfoot.com
|
||||||
Jan Krueger max@physics.otago.ac.nz
|
Jan Krueger max@physics.otago.ac.nz
|
||||||
Janusz A. Urbanowicz alex@bofh.torun.pl
|
Janusz A. Urbanowicz alex@bofh.torun.pl
|
||||||
James Troup james@nocrew.org
|
James Troup james@nocrew.org
|
||||||
|
@ -1,3 +1,8 @@
|
|||||||
|
Wed Feb 23 10:07:57 CET 2000 Werner Koch <wk@gnupg.de>
|
||||||
|
|
||||||
|
* twofish.c (twofish_get_info): Add some const to the casts. By Martin
|
||||||
|
Kahlert.
|
||||||
|
|
||||||
Mon Feb 14 14:30:20 CET 2000 Werner Koch <wk@gnupg.de>
|
Mon Feb 14 14:30:20 CET 2000 Werner Koch <wk@gnupg.de>
|
||||||
|
|
||||||
(update_random_seed_file): Silently ignore update request when pool
|
(update_random_seed_file): Silently ignore update request when pool
|
||||||
|
@ -987,11 +987,11 @@ twofish_get_info (int algo, size_t *keylen,
|
|||||||
*keylen = algo==10? 256 : 128;
|
*keylen = algo==10? 256 : 128;
|
||||||
*blocksize = 16;
|
*blocksize = 16;
|
||||||
*contextsize = sizeof (TWOFISH_context);
|
*contextsize = sizeof (TWOFISH_context);
|
||||||
*(int (**)(const TWOFISH_context*, byte*, unsigned))r_setkey
|
*(int (**)(const TWOFISH_context*, const byte*, unsigned))r_setkey
|
||||||
= twofish_setkey;
|
= twofish_setkey;
|
||||||
*(void (**)(const TWOFISH_context*, byte*, byte*))r_encrypt
|
*(void (**)(const TWOFISH_context*, byte*, const byte*))r_encrypt
|
||||||
= twofish_encrypt;
|
= twofish_encrypt;
|
||||||
*(void (**)(const TWOFISH_context*, byte*, byte*))r_decrypt
|
*(void (**)(const TWOFISH_context*, byte*, const byte*))r_decrypt
|
||||||
= twofish_decrypt;
|
= twofish_decrypt;
|
||||||
|
|
||||||
if( algo == 10 )
|
if( algo == 10 )
|
||||||
|
@ -15,7 +15,7 @@ AM_CONFIG_HEADER(config.h)
|
|||||||
|
|
||||||
VERSION=`cat $srcdir/VERSION`
|
VERSION=`cat $srcdir/VERSION`
|
||||||
PACKAGE=gnupg
|
PACKAGE=gnupg
|
||||||
ALL_LINGUAS="de eo es_ES fr id it ja pl pt_BR pt_PT ru sv"
|
ALL_LINGUAS="de eo es_ES fr id it ja nl pl pt_BR pt_PT ru sv"
|
||||||
static_modules="sha1 md5 rmd160"
|
static_modules="sha1 md5 rmd160"
|
||||||
static_random_module=""
|
static_random_module=""
|
||||||
AC_SUBST(VERSION)
|
AC_SUBST(VERSION)
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
Wed Feb 23 10:07:57 CET 2000 Werner Koch <wk@gnupg.de>
|
||||||
|
|
||||||
|
* helptext.c: typo fix.
|
||||||
|
|
||||||
Thu Feb 17 13:39:32 CET 2000 Werner Koch <wk@gnupg.de>
|
Thu Feb 17 13:39:32 CET 2000 Werner Koch <wk@gnupg.de>
|
||||||
|
|
||||||
* revoke.c: Removed a bunch of commented code.
|
* revoke.c: Removed a bunch of commented code.
|
||||||
|
@ -243,7 +243,7 @@ static struct helptexts { const char *key; const char *help; } helptexts[] = {
|
|||||||
/* revoke.c (ask_revocation_reason) */
|
/* revoke.c (ask_revocation_reason) */
|
||||||
{ "ask_revocation_reason.text", N_(
|
{ "ask_revocation_reason.text", N_(
|
||||||
"If you like, you can enter a text describing why you issue this\n"
|
"If you like, you can enter a text describing why you issue this\n"
|
||||||
"revocation certificate. Please keep this text consis.\n"
|
"revocation certificate. Please keep this text concise.\n"
|
||||||
"An empty line ends the text.\n"
|
"An empty line ends the text.\n"
|
||||||
)},
|
)},
|
||||||
|
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
Wed Feb 23 10:07:57 CET 2000 Werner Koch <wk@gnupg.de>
|
||||||
|
|
||||||
|
* nl.po: New. By Ivo Timmermans.
|
||||||
|
|
||||||
Wed Feb 16 16:25:09 CET 2000 Werner Koch <wk@gnupg.de>
|
Wed Feb 16 16:25:09 CET 2000 Werner Koch <wk@gnupg.de>
|
||||||
|
|
||||||
* eo.po : New. By Edmund.
|
* eo.po : New. By Edmund.
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
# Glossary for GnuPG german translation
|
# Glossary for GnuPG german translation
|
||||||
# Copyright (C) 1998 Free Software Foundation, Inc.
|
# Copyright (C) 1998 Free Software Foundation, Inc.
|
||||||
# Walter Koch <walterk@dip.de>, 1998.
|
# Walter Koch <koch@hsp.de>, 1998.
|
||||||
# This is just a textfile for your information.
|
# This is just a textfile for your information.
|
||||||
# It will _not_ be read or processed automatically by any program
|
# It will _not_ be read or processed automatically by any program
|
||||||
|
|
||||||
@ -112,4 +112,4 @@ warning Warnung
|
|||||||
weak key unsicherer Schlüssel
|
weak key unsicherer Schlüssel
|
||||||
|
|
||||||
(*) Uneinheitlich verwendet
|
(*) Uneinheitlich verwendet
|
||||||
- Gefällt mir nicht so toll
|
- Gefällt mir nicht so tol
|
||||||
|
866
po/es_ES.po
866
po/es_ES.po
File diff suppressed because it is too large
Load Diff
866
po/pt_BR.po
866
po/pt_BR.po
File diff suppressed because it is too large
Load Diff
866
po/pt_PT.po
866
po/pt_PT.po
File diff suppressed because it is too large
Load Diff
@ -1,3 +1,8 @@
|
|||||||
|
Wed Feb 23 10:07:57 CET 2000 Werner Koch <wk@gnupg.de>
|
||||||
|
|
||||||
|
* miscutil.c (asctimestamp): Fix for possible buffer overflow by
|
||||||
|
large system returned date format string.
|
||||||
|
|
||||||
Fri Dec 31 14:08:15 CET 1999 Werner Koch <wk@gnupg.de>
|
Fri Dec 31 14:08:15 CET 1999 Werner Koch <wk@gnupg.de>
|
||||||
|
|
||||||
* logger.c (log_inc_errorcount): New.
|
* logger.c (log_inc_errorcount): New.
|
||||||
|
@ -147,7 +147,7 @@ asctimestamp( u32 stamp )
|
|||||||
tp = localtime( &atime );
|
tp = localtime( &atime );
|
||||||
#ifdef HAVE_STRFTIME
|
#ifdef HAVE_STRFTIME
|
||||||
#if defined(HAVE_NL_LANGINFO)
|
#if defined(HAVE_NL_LANGINFO)
|
||||||
mem2str( fmt, nl_langinfo(D_T_FMT), DIM(fmt) );
|
mem2str( fmt, nl_langinfo(D_T_FMT), DIM(fmt)-3 );
|
||||||
if( strstr( fmt, "%Z" ) == NULL )
|
if( strstr( fmt, "%Z" ) == NULL )
|
||||||
strcat( fmt, " %Z");
|
strcat( fmt, " %Z");
|
||||||
strftime( buffer, DIM(buffer)-1, fmt, tp );
|
strftime( buffer, DIM(buffer)-1, fmt, tp );
|
||||||
|
Loading…
x
Reference in New Issue
Block a user