66# Translators:
7788# MuSheng Chen <[email protected] >, 20199+ # Dai Xu <[email protected] >, 2021910#
1011#, fuzzy
1112msgid ""
@@ -14,7 +15,7 @@ msgstr ""
1415"Report-Msgid-Bugs-To : \n "
1516"POT-Creation-Date : 2021-01-01 16:02+0000\n "
1617"PO-Revision-Date : 2019-09-01 03:13+0000\n "
17- "Last-Translator : MuSheng Chen <sheng.2179@gmail .com>, 2019 \n "
18+ "Last-Translator : Dai Xu <daixu61@hotmail .com>, 2021 \n "
1819"Language-Team : Chinese (China) (https://www.transifex.com/python-doc/teams/5390/zh_CN/)\n "
1920"MIME-Version : 1.0\n "
2021"Content-Type : text/plain; charset=UTF-8\n "
@@ -24,11 +25,11 @@ msgstr ""
2425
2526#: ../../library/crypt.rst:2
2627msgid ":mod:`crypt` --- Function to check Unix passwords"
27- msgstr ""
28+ msgstr ":mod:`crypt` —— 检查 Unix 口令的函数 "
2829
2930#: ../../library/crypt.rst:12
3031msgid "**Source code:** :source:`Lib/crypt.py`"
31- msgstr ""
32+ msgstr "**源代码:** :source:`Lib/struct.py` "
3233
3334#: ../../library/crypt.rst:20
3435msgid ""
@@ -38,72 +39,74 @@ msgid ""
3839" passwords so you can check passwords without storing the actual password, "
3940"or attempting to crack Unix passwords with a dictionary."
4041msgstr ""
42+ "本模块实现了连接 :manpage:`crypt(3)` 的接口,是一个基于改进 DES 算法的单向散列函数;更多细节请参阅 Unix man "
43+ "手册。可能的用途包括保存经过哈希的口令,这样就可以在不存储实际口令的情况下对其进行验证,或者尝试用字典来破解 Unix 口令。"
4144
4245#: ../../library/crypt.rst:28
4346msgid ""
4447"Notice that the behavior of this module depends on the actual implementation"
4548" of the :manpage:`crypt(3)` routine in the running system. Therefore, any "
4649"extensions available on the current implementation will also be available "
4750"on this module."
48- msgstr ""
51+ msgstr "请注意,本模块的执行取决于当前系统中 :manpage:`crypt(3)` 的实际实现。 因此,当前实现版本可用的扩展均可在本模块使用。 "
4952
5053#: ../../library/crypt.rst:34
5154msgid "Hashing Methods"
52- msgstr ""
55+ msgstr "哈希方法 "
5356
5457#: ../../library/crypt.rst:38
5558msgid ""
5659"The :mod:`crypt` module defines the list of hashing methods (not all methods"
5760" are available on all platforms):"
58- msgstr ""
61+ msgstr ":mod:`crypt` 模块定义了哈希方法的列表(不是所有的方法在所有平台上都可用)。 "
5962
6063#: ../../library/crypt.rst:43
6164msgid ""
6265"A Modular Crypt Format method with 16 character salt and 86 character hash "
6366"based on the SHA-512 hash function. This is the strongest method."
64- msgstr ""
67+ msgstr "基于 SHA-512 哈希函数的模块化加密格式方法,具备 16 个字符的 salt 和 86个字符的哈希算法。这是最强的哈希算法。 "
6568
6669#: ../../library/crypt.rst:48
6770msgid ""
6871"Another Modular Crypt Format method with 16 character salt and 43 character "
6972"hash based on the SHA-256 hash function."
70- msgstr ""
73+ msgstr "另一种基于 SHA-256 哈希函数的模块化加密格式方法,具备 16 个字符的 salt 和 43 个字符的哈希算法。 "
7174
7275#: ../../library/crypt.rst:53
7376msgid ""
7477"Another Modular Crypt Format method with 22 character salt and 31 character "
7578"hash based on the Blowfish cipher."
76- msgstr ""
79+ msgstr "另一种基于 Blowfish 的模块化加密格式方法,有 22 个字符的 salt 和 31 个字符的哈希算法。 "
7780
7881#: ../../library/crypt.rst:60
7982msgid ""
8083"Another Modular Crypt Format method with 8 character salt and 22 character "
8184"hash based on the MD5 hash function."
82- msgstr ""
85+ msgstr "另一种基于 MD5 哈希函数的模块化加密格式方法,具备 8 个字符的 salt 和 22 个字符的哈希算法。 "
8386
8487#: ../../library/crypt.rst:65
8588msgid ""
8689"The traditional method with a 2 character salt and 13 characters of hash. "
8790"This is the weakest method."
88- msgstr ""
91+ msgstr "传统的方法,具备 2 个字符的 salt 和 13 个字符的哈希算法。这是最弱的方法。 "
8992
9093#: ../../library/crypt.rst:70
9194msgid "Module Attributes"
92- msgstr ""
95+ msgstr "模块属性 "
9396
9497#: ../../library/crypt.rst:76
9598msgid ""
9699"A list of available password hashing algorithms, as ``crypt.METHOD_*`` "
97100"objects. This list is sorted from strongest to weakest."
98- msgstr ""
101+ msgstr "可用口令哈希算法的列表,形式为 ``crypt.METHOD_*`` 对象。该列表从最强到最弱进行排序。 "
99102
100103#: ../../library/crypt.rst:82
101104msgid "Module Functions"
102105msgstr "模块函数"
103106
104107#: ../../library/crypt.rst:84
105108msgid "The :mod:`crypt` module defines the following functions:"
106- msgstr ""
109+ msgstr ":mod:`crypt` 模块定义了以下函数: "
107110
108111#: ../../library/crypt.rst:88
109112msgid ""
0 commit comments