1
0
mirror of git://git.gnupg.org/gnupg.git synced 2025-04-11 22:01:08 +02:00

See ChangeLog: Wed Feb 23 10:07:57 CET 2000 Werner Koch

This commit is contained in:
Werner Koch 2000-02-23 09:10:10 +00:00
parent c03e6ee0aa
commit 7ae8d22f9b
27 changed files with 10083 additions and 5231 deletions

View File

@ -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

View File

@ -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
View File

@ -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
View File

@ -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

View File

@ -1 +1 @@
1.0.1c 1.0.1d

View File

@ -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

View File

@ -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 )

View File

@ -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)

View File

@ -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.

View File

@ -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"
)}, )},

View File

@ -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.

View File

@ -1,18 +1,18 @@
# 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
........ Authentisierung ........ Authentisierung
aka alias aka alias
algorithm Verfahren algorithm Verfahren
anonymous ungenannter anonymous ungenannter
argument argument
armor ASCII-Hülle armor ASCII-Hülle
available vorhanden [besser?: verfügbar] available vorhanden [besser?: verfügbar]
bad [signature] falsch[e] Unterschrift bad [signature] falsch[e] Unterschrift
bad [MPI] fehlerhafte MPI bad [MPI] fehlerhafte MPI
bug "Bug (Programmfehler)" bug "Bug (Programmfehler)"
cache Lager [ ob das ernst gemeint ist? :-) ] cache Lager [ ob das ernst gemeint ist? :-) ]
certificate Zertifikat certificate Zertifikat
@ -20,15 +20,15 @@ character set Zeichensatz
check (verb) pr|fen, gepr|ft check (verb) pr|fen, gepr|ft
checksum Prüfsumme checksum Prüfsumme
cipher algorithm Verschlüsselungsverfahren cipher algorithm Verschlüsselungsverfahren
clearsig header Klartextsignatur-Einleitung clearsig header Klartextsignatur-Einleitung
command Befehl command Befehl
compress algorithm Komprimierverfahren * compress algorithm Komprimierverfahren *
core dump core-dump-Datei core dump core-dump-Datei
corrupted beschädigter corrupted beschädigter
critical bit ??? critical bit ???
dash escaped mit Bindestrich \"escapte\" dash escaped mit Bindestrich \"escapte\"
decryption Enschlüsselung decryption Enschlüsselung
DEK ??? DEK ???
delete entfernen delete entfernen
depreciated taugt nicht mehr viel depreciated taugt nicht mehr viel
digest algorithm Hashmethode digest algorithm Hashmethode
@ -36,8 +36,8 @@ disabled abgeschaltet
encrypted verschlüsselte encrypted verschlüsselte
expire date Verfallsdatum expire date Verfallsdatum
failed fehlgeschlagen failed fehlgeschlagen
faked [RNG] faked [RNG]
fingerprint Fingerabdruck fingerprint Fingerabdruck
for-your-eyes-only Vertraulichkeit (\"for-your-eyes-only\") for-your-eyes-only Vertraulichkeit (\"for-your-eyes-only\")
generated erzeugter generated erzeugter
good certificate Korrektes Zertifikat good certificate Korrektes Zertifikat
@ -48,14 +48,14 @@ key-ID Schl
key binding Schlüsselanbindung key binding Schlüsselanbindung
keyblock Schlüsselblock keyblock Schlüsselblock
keyring Schlüsselbund keyring Schlüsselbund
keyserver - Schl€sselserver keyserver - Schl€sselserver
lookup - Suche lookup - Suche
main key Hauptschlüssel main key Hauptschlüssel
maintenance utility Wartungs-Hilfsprogramm maintenance utility Wartungs-Hilfsprogramm
malformed ungünstig aufgebaute malformed ungünstig aufgebaute
MDC Manipulation detection code (Siegel ?) MDC Manipulation detection code (Siegel ?)
message Botschaft message Botschaft
mode Modus, Methode * mode Modus, Methode *
move schieben move schieben
network error Netzwerkfehler network error Netzwerkfehler
note Hinweis note Hinweis
@ -73,43 +73,43 @@ primary keys Hauptschl
protection algorithm Schutzverfahren protection algorithm Schutzverfahren
pubkey algorithm Public-Key Verfahren (*) pubkey algorithm Public-Key Verfahren (*)
public key öffentlicher Schüssel public key öffentlicher Schüssel
public key algorithm Public-Key Verfahren public key algorithm Public-Key Verfahren
quit quit
radix64 radix64 radix64 radix64
random Zufall random Zufall
random bytes Zufallswerte random bytes Zufallswerte
retry ???? (Wiederholung?, Wiederaufnahme?) retry ???? (Wiederholung?, Wiederaufnahme?)
revoke widerrufen revoke widerrufen
revocation Widerruf revocation Widerruf
RNG Zufallsgenerator RNG Zufallsgenerator
secondary key Zweitschlüssel secondary key Zweitschlüssel
secret key geheimer Schlüssel secret key geheimer Schlüssel
self-signature Eigenbeglaubigung self-signature Eigenbeglaubigung
sender Absender sender Absender
sign user id User-ID beglaubigen * sign user id User-ID beglaubigen *
signature (files) Unterschrift * signature (files) Unterschrift *
signature (keys) Beglaubigung * signature (keys) Beglaubigung *
simple S2K mode ???? simple S2K mode ????
skipped übergangen, übersprungen, ignoriert skipped übergangen, übersprungen, ignoriert
stdin - stdin stdin - stdin
subkey Unterschlüssel subkey Unterschlüssel
terminal charset - Terminalzeichensatz terminal charset - Terminalzeichensatz
throw verwerfe throw verwerfe
Timestamp conflict Zeitangaben differieren Timestamp conflict Zeitangaben differieren
Trust-DB 'Trust'-Datenbank Trust-DB 'Trust'-Datenbank
trusted - vertrauenswürdig trusted - vertrauenswürdig
trustvalues - trustvalues trustvalues - trustvalues
trying Versuch trying Versuch
type [message] [Botschaft] eintippen type [message] [Botschaft] eintippen
ulimately [trust] uneingeschränktes [Vertrauen] ulimately [trust] uneingeschränktes [Vertrauen]
update Ändern, Änderung update Ändern, Änderung
User - User User - User
user ID User-ID user ID User-ID
user IDs User-IDs user IDs User-IDs
username Username username Username
untrusted - nichtvertruenswürdig untrusted - nichtvertruenswürdig
warning Warnung 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/de.po

File diff suppressed because it is too large Load Diff

1172
po/eo.po

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

866
po/fr.po

File diff suppressed because it is too large Load Diff

1456
po/id.po

File diff suppressed because it is too large Load Diff

866
po/it.po

File diff suppressed because it is too large Load Diff

1180
po/ja.po

File diff suppressed because it is too large Load Diff

3442
po/nl.po Normal file

File diff suppressed because it is too large Load Diff

866
po/pl.po

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

866
po/ru.po

File diff suppressed because it is too large Load Diff

1035
po/sv.po

File diff suppressed because it is too large Load Diff

View File

@ -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.

View File

@ -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 );