Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitf74079a

Browse files
Update translations
1 parentcc4e479 commitf74079a

File tree

3 files changed

+38
-8
lines changed

3 files changed

+38
-8
lines changed

‎library/hashlib.po

Lines changed: 34 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ msgstr ""
153153

154154
#:../../library/hashlib.rst:91
155155
msgid"Hashlib now uses SHA3 and SHAKE from OpenSSL if it provides it."
156-
msgstr"OHashlib agora usa SHA3 e SHAKE do OpenSSL, se ele os fornecer."
156+
msgstr"Ohashlib agora usa SHA3 e SHAKE do OpenSSL, se ele os fornecer."
157157

158158
#:../../library/hashlib.rst:95
159159
msgid"Usage"
@@ -205,7 +205,7 @@ msgstr "Atributos"
205205

206206
#:../../library/hashlib.rst:149
207207
msgid"Hashlib provides the following constant module attributes:"
208-
msgstr"OHashlib fornece os seguintes atributos de módulo constantes:"
208+
msgstr"Ohashlib fornece os seguintes atributos de módulo constantes:"
209209

210210
#:../../library/hashlib.rst:153
211211
msgid""
@@ -411,7 +411,7 @@ msgstr "Exemplo:"
411411

412412
#:../../library/hashlib.rst:306
413413
msgid"Key derivation"
414-
msgstr""
414+
msgstr"Derivação de chave"
415415

416416
#:../../library/hashlib.rst:308
417417
msgid""
@@ -421,12 +421,19 @@ msgid ""
421421
"be tunable, slow, and include a `salt <https://en.wikipedia.org/wiki/"
422422
"Salt_%28cryptography%29>`_."
423423
msgstr""
424+
"Algoritmos de alongamento de chave e derivação de chave são projetados para "
425+
"criar hashes de senhas seguros. Algoritmos ingênuos como ``sha1(password)`` "
426+
"não são resistentes a ataques de força bruta. Uma boa função de hashing de "
427+
"senhas deve ser ajustável, lenta e incluir um `salt <https://pt.wikipedia."
428+
"org/wiki/Sal_(criptografia)>`_."
424429

425430
#:../../library/hashlib.rst:316
426431
msgid""
427432
"The function provides PKCS#5 password-based key derivation function 2. It "
428433
"uses HMAC as pseudorandom function."
429434
msgstr""
435+
"A função fornece a função 2 de derivação de chave baseada em senha PKCS#5. "
436+
"Ela usa HMAC como função pseudoaleatória."
430437

431438
#:../../library/hashlib.rst:319
432439
msgid""
@@ -436,6 +443,11 @@ msgid ""
436443
"sensible length (e.g. 1024). *salt* should be about 16 or more bytes from a "
437444
"proper source, e.g. :func:`os.urandom`."
438445
msgstr""
446+
"A string *hash_name* é o nome desejado do algoritmo de resumo de hash para "
447+
"HMAC, por exemplo, 'sha1' ou 'sha256'. *password* e *salt* são interpretados "
448+
"como buffers de bytes. Aplicações e bibliotecas devem limitar *password* a "
449+
"um comprimento razoável (por exemplo, 1024). *salt* deve ter cerca de 16 "
450+
"bytes ou mais de uma fonte adequada, por exemplo, :func:`os.urandom`."
439451

440452
#:../../library/hashlib.rst:325
441453
msgid""
@@ -445,6 +457,12 @@ msgid ""
445457
"your application, read *Appendix A.2.2* of NIST-SP-800-132_. The answers on "
446458
"the `stackexchange pbkdf2 iterations question`_ explain in detail."
447459
msgstr""
460+
"O número de *iterations* deve ser escolhido com base no algoritmo de hash e "
461+
"no poder computacional. A partir de 2022, centenas de milhares de iterações "
462+
"do SHA-256 são sugeridas. Para entender por que e como escolher o que é "
463+
"melhor para sua aplicação, leia o *Appendix A.2.2* do NIST-SP-800-132_. As "
464+
"respostas à `pergunta sobre iterações de pbkdf2 no StackExchange`_ explicam "
465+
"em detalhes."
448466

449467
#:../../library/hashlib.rst:331
450468
msgid""
@@ -470,6 +488,8 @@ msgid ""
470488
"The function provides scrypt password-based key derivation function as "
471489
"defined in :rfc:`7914`."
472490
msgstr""
491+
"A função fornece a função de derivação de chave baseada em senha scrypt, "
492+
"conforme definido em :rfc:`7914`."
473493

474494
#:../../library/hashlib.rst:359
475495
msgid""
@@ -478,6 +498,10 @@ msgid ""
478498
"length (e.g. 1024). *salt* should be about 16 or more bytes from a proper "
479499
"source, e.g. :func:`os.urandom`."
480500
msgstr""
501+
"*password* e *salt* devem ser :term:`Objetos byte ou similar <bytes-like "
502+
"object>`. Aplicações e bibliotecas devem limitar *password* a um tamanho "
503+
"razoável (por exemplo, 1024). *salt* deve ter cerca de 16 bytes ou mais de "
504+
"uma fonte adequada, por exemplo, :func:`os.urandom`."
481505

482506
#:../../library/hashlib.rst:364
483507
msgid""
@@ -488,25 +512,31 @@ msgstr ""
488512

489513
#:../../library/hashlib.rst:372
490514
msgid"BLAKE2"
491-
msgstr""
515+
msgstr"BLAKE2"
492516

493517
#:../../library/hashlib.rst:379
494518
msgid""
495519
"BLAKE2_ is a cryptographic hash function defined in :rfc:`7693` that comes "
496520
"in two flavors:"
497521
msgstr""
522+
"BLAKE2_ é uma função hash criptográfica definida em :rfc:`7693` que vem em "
523+
"dois sabores:"
498524

499525
#:../../library/hashlib.rst:382
500526
msgid""
501527
"**BLAKE2b**, optimized for 64-bit platforms and produces digests of any size "
502528
"between 1 and 64 bytes,"
503529
msgstr""
530+
"**BLAKE2b**, otimizado para plataformas de 64 bits e produz resumos de "
531+
"qualquer tamanho entre 1 e 64 bytes,"
504532

505533
#:../../library/hashlib.rst:385
506534
msgid""
507535
"**BLAKE2s**, optimized for 8- to 32-bit platforms and produces digests of "
508536
"any size between 1 and 32 bytes."
509537
msgstr""
538+
"**BLAKE2s**, otimizado para plataformas de 8 a 32 bits e produz resumos de "
539+
"qualquer tamanho entre 1 e 32 bytes."
510540

511541
#:../../library/hashlib.rst:388
512542
msgid""

‎potodo.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@
8585

8686

8787

88-
#library (62.45% done)
88+
#library (62.48% done)
8989

9090
-_thread.po 49 / 51 ( 96.0% translated).
9191
- abc.po 48 / 49 ( 97.0% translated).
@@ -158,7 +158,7 @@
158158
- glob.po 32 / 33 ( 96.0% translated).
159159
- grp.po 28 / 29 ( 96.0% translated).
160160
- gzip.po 54 / 60 ( 90.0% translated).
161-
- hashlib.po53 / 161 (32.0% translated).
161+
- hashlib.po64 / 161 (39.0% translated).
162162
- heapq.po 50 / 51 ( 98.0% translated).
163163
- hmac.po 26 / 27 ( 96.0% translated).
164164
- html.entities.po 7 / 9 ( 77.0% translated).
@@ -326,5 +326,5 @@
326326
- 3.8.po 468 / 469 ( 99.0% translated).
327327

328328

329-
#TOTAL (67.07% done)
329+
#TOTAL (67.09% done)
330330

‎stats.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"completion":"67.07%","translated":37422,"entries":55794,"updated_at":"2025-05-05T23:38:01+00:00Z"}
1+
{"completion":"67.09%","translated":37433,"entries":55794,"updated_at":"2025-05-06T23:38:06+00:00Z"}

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp