8000 Finished translation · python/python-docs-es@5ae5fc7 · GitHub
[go: up one dir, main page]

Skip to content

Commit 5ae5fc7

Browse files
committed
Finished translation
1 parent 9a07948 commit 5ae5fc7

File tree

1 file changed

+24
-12
lines changed

1 file changed

+24
-12
lines changed

library/hashlib.po

Lines changed: 24 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgstr ""
1111
"Project-Id-Version: Python 3.8\n"
1212
"Report-Msgid-Bugs-To: \n"
1313
"POT-Creation-Date: 2022-10-25 19:47+0200\n"
14-
"PO-Revision-Date: 2023-02-02 15:18-0300\n"
14+
"PO-Revision-Date: 2023-02-06 10:40-0300\n"
1515
"Last-Translator: Francisco Mora <fr.morac@duocuc.cl>\n"
1616
"Language-Team: python-doc-es\n"
1717
"Language: es\n"
@@ -155,7 +155,6 @@ msgid "Hashlib now uses SHA3 and SHAKE from OpenSSL 1.1.1 and newer."
155155
msgstr "Hashlib ahora usa SHA3 y SHAKE de OpenSSL 1.1.1 y posteriores."
156156

157157
#: ../Doc/library/hashlib.rst:94
158-
#, fuzzy
159158
msgid ""
160159
"For example, to obtain the digest of the byte string ``b\"Nobody inspects "
161160
"the spammish repetition\"``::"
@@ -335,15 +334,16 @@ msgstr ""
335334
"contener bytes en el rango completo desde 0 a 255."
336335

337336
#: ../Doc/library/hashlib.rst:230
338-
#, fuzzy
339337
msgid "File hashing"
340-
msgstr "Cifrado simple"
338+
msgstr "Cifrado de archivos"
341339

342340
#: ../Doc/library/hashlib.rst:232
343341
msgid ""
344342
"The hashlib module provides a helper function for efficient hashing of a "
345343
"file or file-like object."
346344
msgstr ""
345+
"El módulo hashlib proporciona una función de ayuda para el cifrado eficiente "
346+
"de un archivo o un objeto similar a un archivo."
347347

348348
#: ../Doc/library/hashlib.rst:237
349349
msgid ""
@@ -362,17 +362,25 @@ msgid ""
362362
"an unknown state after this function returns or raises. It is up to the "
363363
"caller to close *fileobj*."
364364
msgstr ""
365+
"*fileobj* debe ser un objeto tipo fichero abierto para lectura en modo "
366+
"binario. Acepta objetos fichero de instancias :func:`open`, :class:`~io."
367+
"BytesIO`, objetos SocketIO de :meth:`socket.socket.makefile`, y similares. "
368+
"La función puede saltarse la E/S de Python y usar directamente el descriptor "
369+
"de fichero de :meth:`~io.IOBase.fileno`. *debe asumirse que fileobj* está en "
370+
"un estado desconocido después de que esta función devuelva o lance. Es "
371+
"responsabilidad del que llama cerrar *fileobj*."
365372

366373
#: ../Doc/library/hashlib.rst:247
367374
msgid ""
368375
"*digest* must either be a hash algorithm name as a *str*, a hash "
369376
"constructor, or a callable that returns a hash object."
370377
msgstr ""
378+
"*digest* debe ser un nombre de algoritmo de cifrado como *str*, un "
379+
"constructor de cifrado o un callable que devuelva un objeto cifrado."
371380

372381
#: ../Doc/library/hashlib.rst:250
373-
#, fuzzy
374382
msgid "Example:"
375-
msgstr "Ejemplos"
383+
msgstr "Ejemplo:"
376384

377385
#: ../Doc/library/hashlib.rst:273
378386
msgid "Key derivation"
@@ -423,6 +431,11 @@ msgid ""
423431
"your application, read *Appendix A.2.2* of NIST-SP-800-132_. The answers on "
424432
"the `stackexchange pbkdf2 iterations question`_ explain in detail."
425433
msgstr ""
434+
"El número de *iteraciones* debe elegirse en función del algoritmo de cifrado "
435+
"y la potencia de cálculo. A partir de 2022, se sugieren cientos de miles de "
436+
"iteraciones de SHA-256. Para saber por qué y cómo elegir lo mejor para su "
437+
"aplicación, lea el *Apéndice A.2.2* de NIST-SP-800-132_. Las respuestas a la "
438+
"pregunta `stackexchange pbkdf2 iterations question`_ lo explican en detalle."
426439

427440
#: ../Doc/library/hashlib.rst:298
428441
msgid ""
@@ -704,7 +717,6 @@ msgstr ""
704717
"BLAKE2s, 0 en modo secuencial)."
705718

706719
#: ../Doc/library/hashlib.rst:434
707-
#, fuzzy
708720
msgid ""
709721
"*last_node*: boolean indicating whether the processed node is the last one "
710722
"(``False`` for sequential mode)."
@@ -713,7 +725,7 @@ msgstr ""
713725
"para modo secuencial)."
714726

715727
msgid "Explanation of tree mode parameters."
716-
msgstr ""
728+
msgstr "Explicación de los parámetros del modo árbol."
717729

718730
#: ../Doc/library/hashlib.rst:440
719731
msgid ""
@@ -968,13 +980,12 @@ msgstr ""
968980
"resumidamente detiene este tipo de ataque."
969981

970982
#: ../Doc/library/hashlib.rst:670
971-
#, fuzzy
972983
msgid ""
973984
"(`The Skein Hash Function Family <https://www.schneier.com/wp-content/"
974985
"uploads/2016/02/skein.pdf>`_, p. 21)"
975986
msgstr ""
976-
"(`The Skein Hash Function Family <http://www.skein-hash.info/sites/default/"
977-
"files/skein1.3.pdf>`_, p. 21)"
987+
"(`The Skein Hash Function Family <https://www.schneier.com/wp-content/"
988+
"uploads/2016/02/skein.pdf>`_, p. 21)"
978989

979990
#: ../Doc/library/hashlib.rst:674
980991
msgid "BLAKE2 can be personalized by passing bytes to the *person* argument::"
@@ -1152,10 +1163,11 @@ msgstr "PKCS #5: Password-Based Cryptography Specification Version 2.1"
11521163
msgid ""
11531164
"https://nvlpubs.nist.gov/nistpubs/Legacy/SP/nistspecialpublication800-132.pdf"
11541165
msgstr ""
1166+
"https://nvlpubs.nist.gov/nistpubs/Legacy/SP/nistspecialpublication800-132.pdf"
11551167

11561168
#: ../Doc/library/hashlib.rst:804
11571169
msgid "NIST Recommendation for Password-Based Key Derivation."
1158-
msgstr ""
1170+
msgstr "NIST Recomendación para la derivación de claves basadas en contraseña."
11591171

11601172
#~ msgid ""
11611173
#~ "The number of *ite 37AB rations* should be chosen based on the hash algorithm "

0 commit comments

Comments
 (0)
0