diff options
author | Gregory P. Smith <greg@mad-scientist.com> | 2008-01-20 01:32:00 (GMT) |
---|---|---|
committer | Gregory P. Smith <greg@mad-scientist.com> | 2008-01-20 01:32:00 (GMT) |
commit | da407232e02e4d983f72801803faa6d25b2a8162 (patch) | |
tree | 97dff7393900e4f6175760996d04416e9a3727dc /Lib/zipfile.py | |
parent | f25680afd0df91a6e9025f9813bf53614dda5f25 (diff) | |
download | cpython-da407232e02e4d983f72801803faa6d25b2a8162.zip cpython-da407232e02e4d983f72801803faa6d25b2a8162.tar.gz cpython-da407232e02e4d983f72801803faa6d25b2a8162.tar.bz2 |
Document that zipfile decryption is insanely slow and fix a typo and
blatant lie in a docstring (it is not useful for security regardless of
how you spell it).
Diffstat (limited to 'Lib/zipfile.py')
-rw-r--r-- | Lib/zipfile.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/zipfile.py b/Lib/zipfile.py index 6feabbf..9f5669e 100644 --- a/Lib/zipfile.py +++ b/Lib/zipfile.py @@ -302,7 +302,7 @@ class _ZipDecrypter: ZIP supports a password-based form of encryption. Even though known plaintext attacks have been found against it, it is still useful - for low-level securicy. + to be able to get data out of such a file. Usage: zd = _ZipDecrypter(mypwd) |