Moin Mitübersetzer,
ich habe vorgestern eine Handbuchseite aus Abschnitt 3 fertig übersetzt.
Es sind insgesamt 25 Zeichenketten.
Für konstruktives Korrekturlesen wäre ich sehr dankbar.
Viele Grüße
Helge
--
Dr. Helge Kreutzmann debian@helgefjell.de
Dipl.-Phys. http://www.helgefjell.de/debian.php
64bit GNU powered gpg signed mail preferred
Help keep free software "libre": http://www.ffii.de/
# German translation of manpages # This file is distributed under the same license as the manpages-l10n package. # Copyright © of this file: # Helge Kreutzmann <debian@helgefjell.de>, 2026. msgid "" msgstr "" "Project-Id-Version: manpages-l10n 4.30.2\n" "POT-Creation-Date: 2026-06-05 06:19+0200\n" "PO-Revision-Date: 2026-06-27 12:51+0200\n" "Last-Translator: Helge Kreutzmann <debian@helgefjell.de>\n" "Language-Team: German <debian-l10n-german@lists.debian.org>\n" "Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" # #-#-#-#-# archlinux: BN_CTX_start.3ssl.pot (PACKAGE VERSION) #-#-#-#-# # #. #-#-#-#-# archlinux: BN_CTX_start.3ssl.pot (PACKAGE VERSION) #-#-#-#-# #. Required to disable full justification in groff 1.23.0. #. ======================================================================== #. type: IX #. #-#-#-#-# debian-trixie: BN_CTX_start.3ssl.pot (PACKAGE VERSION) #-#-#-#-# #. ======================================================================== #. type: IX #. #-#-#-#-# debian-unstable: BN_CTX_start.3ssl.pot (PACKAGE VERSION) #-#-#-#-# #. ======================================================================== #. type: IX #: archlinux debian-trixie debian-unstable #, no-wrap msgid "Title" msgstr "Title" # #. Required to disable full justification in groff 1.23.0. #. ======================================================================== #. type: IX #: archlinux #, no-wrap msgid "BN_CTX_START 3ssl" msgstr "BN_CTX_START 3ssl" #. type: TH #: archlinux debian-trixie debian-unstable #, no-wrap msgid "BN_CTX_START" msgstr "BN_CTX_START" #. type: TH #: archlinux debian-trixie debian-unstable #, no-wrap msgid "2026-04-07" msgstr "7. April 2026" #. type: TH #: archlinux debian-unstable #, no-wrap msgid "3.6.2" msgstr "3.6.2" #. type: TH #: archlinux debian-trixie debian-unstable #, no-wrap msgid "OpenSSL" msgstr "OpenSSL" #. type: SH #: archlinux debian-trixie debian-unstable #, no-wrap msgid "NAME" msgstr "BEZEICHNUNG" #. type: Plain text #: archlinux debian-trixie debian-unstable msgid "BN_CTX_start, BN_CTX_get, BN_CTX_end - use temporary BIGNUM variables" msgstr "" "BN_CTX_start, BN_CTX_get, BN_CTX_end - Temporäre BIGNUM-Variablen verwenden" #. type: IX #: archlinux debian-trixie debian-unstable #, no-wrap msgid "SYNOPSIS" msgstr "ÜBERSICHT" #. type: IX #: archlinux debian-trixie debian-unstable #, no-wrap msgid "Header" msgstr "Header" #. type: Plain text #: archlinux debian-trixie debian-unstable #, no-wrap msgid "" "\\& #include E<lt>openssl/bn.hE<gt>\n" "\\&\n" "\\& void BN_CTX_start(BN_CTX *ctx);\n" "\\&\n" "\\& BIGNUM *BN_CTX_get(BN_CTX *ctx);\n" "\\&\n" "\\& void BN_CTX_end(BN_CTX *ctx);\n" msgstr "" "\\& #include E<lt>openssl/bn.hE<gt>\n" "\\&\n" "\\& void BN_CTX_start(BN_CTX *ctx);\n" "\\&\n" "\\& BIGNUM *BN_CTX_get(BN_CTX *ctx);\n" "\\&\n" "\\& void BN_CTX_end(BN_CTX *ctx);\n" #. type: IX #: archlinux debian-trixie debian-unstable #, no-wrap msgid "DESCRIPTION" msgstr "BESCHREIBUNG" #. type: Plain text #: archlinux debian-trixie debian-unstable msgid "" "These functions are used to obtain temporary B<BIGNUM> variables from a " "B<BN_CTX> (which can been created by using B<BN_CTX_new>\\|(3)) in order to " "save the overhead of repeatedly creating and freeing B<BIGNUM>s in functions " "that are called from inside a loop." msgstr "" "Diese Funktionen werden zum Erlangen temporärer B<BIGNUM>-Variablen aus " "einem B<BN_CTX> (der mittels B<BN_CTX_new>\\|(3) erstellt worden sein kann) " "verwandt, um den Mehraufwand des wiederholten Erstellens und Freigebens von " "B<BIGNUM>s in Funktionen zu vermeiden, die innerhalb einer Schleife " "aufgerufen werden." # FIXME B<BN_CTX_start()> → B<BN_CTX_start>() # FIXME B<BN_CTX_get()> → B<BN_CTX_get>() #. type: Plain text #: archlinux debian-trixie debian-unstable msgid "" "A function must call B<BN_CTX_start()> first. Then, B<BN_CTX_get()> may be " "called repeatedly to obtain temporary B<BIGNUM>s. All B<BN_CTX_get()> calls " "must be made before calling any other functions that use the \\&B<ctx> as an " "argument." msgstr "" "Eine Funktion muss zuerst B<BN_CTX_start>() aufrufen. Dann kann wiederholt " "B<BN_CTX_get>() aufgerufen werden, um temporäre B<BIGNUM>s zu erhalten. Alle " "Aufrufe B<BN_CTX_get>() müssen vor dem Aufruf jeder anderen Funktion " "erfolgen, die die \\&B<ctx> als Argument nutzen." # FIXME B<BN_CTX_end()> → B<BN_CTX_end>() # FIXME \\&B<BN_CTX_get()> → \\&B<BN_CTX_get>() # FIXME NULL → B<NULL> #. type: Plain text #: archlinux debian-trixie debian-unstable msgid "" "Finally, B<BN_CTX_end()> must be called before returning from the function. " "If B<ctx> is NULL, nothing is done. When B<BN_CTX_end()> is called, the " "B<BIGNUM> pointers obtained from \\&B<BN_CTX_get()> become invalid." msgstr "" "Schließlich muss B<BN_CTX_end>() aufgerufen werden, bevor aus der Funktion " "zurückgekehrt wird. Falls B<ctx> B<NULL> ist, passiert nichts. Wenn " "B<BN_CTX_end>() aufgerufen wird, werden die von \\&B<BN_CTX_get>() " "erhaltenen B<BIGNUM>-Zeiger ungültig." #. type: IX #: archlinux debian-trixie debian-unstable #, no-wrap msgid "RETURN VALUES" msgstr "RÜCKGABEWERTE" # FIXME B<BN_CTX_start()> → B<BN_CTX_start>() # FIXME B<BN_CTX_end()> → B<BN_CTX_end>() #. type: Plain text #: archlinux debian-trixie debian-unstable msgid "\\&B<BN_CTX_start()> and B<BN_CTX_end()> return no values." msgstr "B<BN_CTX_start>() und B<BN_CTX_end>() geben keine Werte zurück." # FIXME \\&B<BN_CTX_get()> → \\&B<BN_CTX_get>() #. type: Plain text #: archlinux debian-trixie debian-unstable msgid "" "\\&B<BN_CTX_get()> returns a pointer to the B<BIGNUM>, or B<NULL> on error. " "Once B<BN_CTX_get()> has failed, the subsequent calls will return B<NULL> as " "well, so it is sufficient to check the return value of the last " "\\&B<BN_CTX_get()> call. In case of an error, an error code is set, which " "can be obtained by B<ERR_get_error>\\|(3)." msgstr "" "\\&B<BN_CTX_get>() liefert einen Zeiger auf die B<BIGNUM> oder B<NULL> im " "Fehlerfall. Sobald \\&B<BN_CTX_get>() fehlgeschlagen ist, werden auch " "nachfolgende Aufrufe B<NULL> zurückliefern, daher reicht es aus, den " "Rückgabewert des letzten Aufrufs von \\&B<BN_CTX_get>() zu prüfen. Im " "Fehlerfall wird ein Fehler-Code gesetzt, der mittels B<ERR_get_error>\\|(3) " "erlangt werden kann." #. type: IX #: archlinux debian-trixie debian-unstable #, no-wrap msgid "SEE ALSO" msgstr "SIEHE AUCH" #. type: Plain text #: archlinux debian-trixie debian-unstable msgid "\\&B<BN_CTX_new>\\|(3)" msgstr "\\&B<BN_CTX_new>\\|(3)" #. type: IX #: archlinux debian-trixie debian-unstable #, no-wrap msgid "COPYRIGHT" msgstr "COPYRIGHT" #. type: Plain text #: archlinux debian-trixie debian-unstable msgid "Copyright 2000-2016 The OpenSSL Project Authors. All Rights Reserved." msgstr "" "Copyright 2000-2016 Die OpenSSL-Projekt-Autoren. Alle Rechte vorbehalten." # FIXME LICENSE → I<LICENSE> #. type: Plain text #: archlinux debian-trixie debian-unstable msgid "" "Licensed under the Apache License 2.0 (the \"License\"). You may not use " "this file except in compliance with the License. You can obtain a copy in " "the file LICENSE in the source distribution or at E<lt>https://" "www.openssl.org/source/license.htmlE<gt>." msgstr "" "Lizenziert under der Apache License 2.0 (der »Lizenz«). Sie dürfen diese " "Datei nur verwenden, wenn Sie der Lizenz folgen. Sie können eine Kopie der " "Lizenz in der Datei I<LICENSE> in der Quelldistribution finden oder unter " "E<lt>https://www.openssl.org/source/license.htmlE<gt>." #. ======================================================================== #. type: IX #: debian-trixie debian-unstable #, no-wrap msgid "BN_CTX_START 3SSL" msgstr "BN_CTX_START 3SSL" #. type: TH #: debian-trixie #, no-wrap msgid "3.5.6" msgstr "3.5.6"
Attachment:
signature.asc
Description: PGP signature