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:
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.
|
||||||
|
60
po/de.glo
60
po/de.glo
@ -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/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