{ "info": { "author": "Zope Foundation and Contributors", "author_email": "zope-dev@zope.org", "bugtrack_url": null, "classifiers": [ "Development Status :: 5 - Production/Stable", "Environment :: Web Environment", "Framework :: Zope3", "Intended Audience :: Developers", "License :: OSI Approved :: Zope Public License", "Natural Language :: English", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", "Topic :: Internet :: WWW/HTTP" ], "description": "===================\n ``zope.password``\n===================\n\n.. image:: https://img.shields.io/pypi/v/zope.password.svg\n :target: https://pypi.python.org/pypi/zope.password/\n :alt: Latest release\n\n.. image:: https://img.shields.io/pypi/pyversions/zope.password.svg\n :target: https://pypi.org/project/zope.password/\n :alt: Supported Python versions\n\n.. image:: https://travis-ci.org/zopefoundation/zope.password.png?branch=master\n :target: https://travis-ci.org/zopefoundation/zope.password\n\n.. image:: https://coveralls.io/repos/github/zopefoundation/zope.password/badge.svg?branch=master\n :target: https://coveralls.io/github/zopefoundation/zope.password?branch=master\n\n.. image:: https://readthedocs.org/projects/zopepassword/badge/?version=latest\n :target: https://zopepassword.readthedocs.io/en/latest/\n :alt: Documentation Status\n\nThis package provides a password manager mechanism. Password manager\nis an utility object that can encode and check encoded\npasswords.\n\nDocumentation is hosted at https://zopepassword.readthedocs.io/\n\n\n=========\n Changes\n=========\n\n4.3.1 (2017-09-01)\n==================\n\n- Fix running ``configure.zcml`` when ``zope.security`` is installed.\n See `issue 15\n `_.\n\n\n4.3.0 (2017-08-31)\n==================\n\n- Added a ``bcrypt``-based password manager (available only if the\n `bcrypt `_ library is\n importable). This manager can also check passwords that were encoded\n with `z3c.bcrypt `_. If\n that package is *not* installed, then ``configure.zcml`` will\n install this manager as a utility with both the ``BCRYPT``\n (preferred) and ``bcrypt`` names for compatibility with it. (See\n https://github.com/zopefoundation/zope.password/issues/10)\n\n- Add a ``bcrypt_kdf`` password manager. This allows tunable numbers\n of rounds. See https://github.com/zopefoundation/zope.password/issues/9\n\n- Fix the ``zpasswd`` console script on Python 3.\n\n- Update the ``zpasswd`` script to use ``argparse`` instead of ``optparse.``\n\n- Use ``hmac.compare_digest`` when checking passwords to\n prevent timing analysis. This requires Python 2.7.7 or above.\n\n- Add support for Python 3.6.\n\n- Drop support for Python 3.3 and Python 2.7.6 and below.\n\n- Drop support for ``python setup.py test``.\n\n4.2.0 (2016-07-07)\n==================\n\n- Drop support for Python 2.6.\n\n- Converted documentation to Sphinx, including testing doctest snippets\n under ``tox``.\n\n- Add support for Python 3.5.\n\n\n4.1.0 (2014-12-27)\n==================\n\n- Add support for PyPy. (PyPy3 is pending release of a fix for:\n https://bitbucket.org/pypy/pypy/issue/1946)\n\n- Add supprt for Python 3.4.\n\n- Add support for testing on Travis.\n\n\n4.0.2 (2013-03-11)\n==================\n\n- Fix some final resource warnings.\n\n\n4.0.1 (2013-03-10)\n==================\n\n- Fix test failures under Python 3.3 when warnings are enabled.\n\n\n4.0.0 (2013-02-21)\n==================\n\n- Make ``zpasswd`` a proper console script entry point.\n\n- Add ``tox.ini`` and ``MANIFEST.in``.\n\n- Add support for Python 3.3\n\n- Replace deprecated ``zope.interface.implements`` usage with equivalent\n ``zope.interface.implementer`` decorator.\n\n- Drop support for Python 2.4 and 2.5.\n\n- Add a new ``IMatchingPasswordManager`` interface with a 'match' method,\n which returns True if a given password hash was encdoded with the scheme\n implemented by the specific manager. All managers in this package implement\n this interface.\n\n- Use \"{SHA}\" as the prefix for SHA1-encoded passwords to be compatible with\n RFC 2307, but support matching against \"{SHA1}\" for backwards compatibility.\n\n- Add a crypt password manager to fully support all methods named in RFC 2307.\n It is contained in the ``legacy`` module however, to flag crypt's status.\n\n- Add a SMD5 (salted MD5) password manager to fully support all encoding\n schemes implemented by OpenLDAP.\n\n- Add a MySQL ``PASSWORD()`` (versions before 4.1) password manager, as also\n found in Zope2's ``AccessControl.AuthEncoding`` module.\n\n- Remove the useless, cosmetic salt from the MD5 and SHA1 password managers,\n and use base64 encoding instead of hexdigests. This makes the output of\n these managers compatible with other MD5 and SHA1 hash implementations such\n as RFC 2307 but doesn't lower it's security in any way. Checking passwords\n against old, still 'salted' password hashes with hexdigests is still\n supported.\n\n- Use the ``standard_base64encode`` method instead of ``url_base64encode``\n to maintain compatibility with LDAP.\n\n3.6.1 (2010-05-27)\n==================\n\n- The SSHAPasswordManager.checkPassword() would not handle unicode input\n (even if the string would only contain ascii characters). Now, the\n ``encoded_password`` input will be encoded to ascii, which is deemed safe\n as it should not contain non-ascii characters anyway.\n\n3.6.0 (2010-05-07)\n==================\n\n- Remove ``zope.testing`` dependency for tests.\n\n- Update some copyright headers to comply to repository policy.\n\n- Add ``zpasswd`` script formerly hold in zope.app.server. Contrary to\n former zpasswd script, which used \"Plain Text\" as default password\n manager, now SSHA is used as default.\n\n3.5.1 (2009-03-14)\n==================\n\n- Make security protection directives in ``configure.zcml`` execute only\n if ``zope.security`` is installed. This will allow reuse of the\n ``configure.zcml`` file in environments without ``zope.security``,\n for example with ``repoze.zcml``.\n\n- Add \"Password Manager Names\" vocabulary for use with ``zope.schema``\n and ``zope.component``, like it was in ``zope.app.authentication``.\n It's an optional feature so it doesn't add hard dependency. We use\n \"vocabulary\" extra to list dependencies needed for vocabulary functionality.\n\n3.5.0 (2009-03-06)\n==================\n\nFirst release. This package was splitted off from ``zope.app.authentication``\nto separate password manager functionality that is greatly re-usable without\nany bit of ``zope.app.authentication`` and to reduce its dependencies.\n\n\n", "description_content_type": null, "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://github.com/zopefoundation/zope.password", "keywords": "zope authentication password zpasswd", "license": "ZPL 2.1", "maintainer": "", "maintainer_email": "", "name": "zope.password", "package_url": "https://pypi.org/project/zope.password/", "platform": "", "project_url": "https://pypi.org/project/zope.password/", "project_urls": { "Homepage": "http://github.com/zopefoundation/zope.password" }, "release_url": "https://pypi.org/project/zope.password/4.3.1/", "requires_dist": [ "setuptools", "zope.component", "zope.configuration", "zope.interface", "bcrypt; extra == 'bcrypt'", "Sphinx; extra == 'docs'", "repoze.sphinx.autointerface; extra == 'docs'", "bcrypt; extra == 'test'", "zope.schema; extra == 'test'", "zope.security; extra == 'test'", "zope.testing; extra == 'test'", "zope.testrunner; extra == 'test'", "zope.schema; extra == 'vocabulary'" ], "requires_python": ">=2.7.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*", "summary": "Password encoding and checking utilities", "version": "4.3.1" }, "last_serial": 3140416, "releases": { "3.5.0": [ { "comment_text": "", "digests": { "md5": "c0b926aa0da2494b9e03cd5e01673443", "sha256": "7925a154b5aba10add6f795c3a6c0a63dc2c1d682e342d48f60a18014ba3e8c0" }, "downloads": -1, "filename": "zope.password-3.5.0.tar.gz", "has_sig": false, "md5_digest": "c0b926aa0da2494b9e03cd5e01673443", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6345, "upload_time": "2009-03-06T13:54:57", "url": "https://files.pythonhosted.org/packages/b1/38/bdcf4832b71c54342f7f133ead511121d978f1e660511fd22d6823202a03/zope.password-3.5.0.tar.gz" } ], "3.5.1": [ { "comment_text": "", "digests": { "md5": "7dc97b0d5168ca04fe097098504e7ca1", "sha256": "e23f5883e759a1ccb8acb54b88688ccd64fc45010bd40598eaa4c77fb0d33cc0" }, "downloads": -1, "filename": "zope.password-3.5.1.tar.gz", "has_sig": false, "md5_digest": "7dc97b0d5168ca04fe097098504e7ca1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6742, "upload_time": "2009-03-14T18:06:47", "url": "https://files.pythonhosted.org/packages/a6/19/3af3fecadad5e9423792db0c29e12fd51c280efec389c25e39d215787c43/zope.password-3.5.1.tar.gz" } ], "3.6.0": [ { "comment_text": "", "digests": { "md5": "877f965bf5aa92c7f8a390ae34763665", "sha256": "b38ff90d4955e441c59d1649812ea4bd9bb8c4e2801da116f100b269ba403f6e" }, "downloads": -1, "filename": "zope.password-3.6.0.tar.gz", "has_sig": false, "md5_digest": "877f965bf5aa92c7f8a390ae34763665", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12846, "upload_time": "2010-05-07T23:52:35", "url": "https://files.pythonhosted.org/packages/34/3f/cba34eba5bb9efc0142d591374656c07d48ae82c881b6b9c55fe5e053981/zope.password-3.6.0.tar.gz" } ], "3.6.1": [ { "comment_text": "", "digests": { "md5": "230f93a79020c8a3dc01d79832546e3c", "sha256": "27e3cbb4ec8450eb35fcc27d8913b527d61118ffaa0e3e1bfc7f265e05e6ee23" }, "downloads": -1, "filename": "zope.password-3.6.1.tar.gz", "has_sig": false, "md5_digest": "230f93a79020c8a3dc01d79832546e3c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 14633, "upload_time": "2010-05-27T10:08:26", "url": "https://files.pythonhosted.org/packages/74/a8/f5346e10f709c26d58aeaa6398402bb94dcc52551736473bfcb698ee9266/zope.password-3.6.1.tar.gz" } ], "4.0.0": [ { "comment_text": "", "digests": { "md5": "00842c665e828a9d18223509c1e271b0", "sha256": "67a60592283a1dead7e85d717bde4870144ec002f9ffd514cdfd1e4102e4655a" }, "downloads": -1, "filename": "zope.password-4.0.0.zip", "has_sig": false, "md5_digest": "00842c665e828a9d18223509c1e271b0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 35258, "upload_time": "2013-02-21T19:48:02", "url": "https://files.pythonhosted.org/packages/be/87/f3547287b1fc26e933a84cbc410320e99e63858a56cd48176a2cfe87f426/zope.password-4.0.0.zip" } ], "4.0.1": [ { "comment_text": "", "digests": { "md5": "a8d107490adc3f9395a2c47a6adb39e2", "sha256": "c2b80412d1952ea2cff25ca1fa1d130f68a8866b7a0330964c70333f5004470e" }, "downloads": -1, "filename": "zope.password-4.0.1.zip", "has_sig": false, "md5_digest": "a8d107490adc3f9395a2c47a6adb39e2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 35393, "upload_time": "2013-03-11T00:14:49", "url": "https://files.pythonhosted.org/packages/00/81/60b5324cdecc17131777aaa856c949756f5f7c55159cabc82ac537d67381/zope.password-4.0.1.zip" } ], "4.0.2": [ { "comment_text": "", "digests": { "md5": "4c035f4cebf6b5007e8de57adafe47b2", "sha256": "38b522b5b9da2c9a45ad2d471b2541c0303078a8b5673b0c39e3b7536fdf8fc0" }, "downloads": -1, "filename": "zope.password-4.0.2.zip", "has_sig": false, "md5_digest": "4c035f4cebf6b5007e8de57adafe47b2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 35513, "upload_time": "2013-03-12T00:18:29", "url": "https://files.pythonhosted.org/packages/f4/7c/d5f995f00cf1fe9868059dcec35e9a7bbc0ef54f03b76cc07cf2ebe521c1/zope.password-4.0.2.zip" } ], "4.1.0": [ { "comment_text": "", "digests": { "md5": "b31a34a30f4c8c8bb7d6cc5e86f7d0c1", "sha256": "cd4a61605593c39db44d6b1e4f3369e4d5610e933ecf02fe5a3e51349d781b55" }, "downloads": -1, "filename": "zope.password-4.1.0.tar.gz", "has_sig": false, "md5_digest": "b31a34a30f4c8c8bb7d6cc5e86f7d0c1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21269, "upload_time": "2014-12-27T23:17:34", "url": "https://files.pythonhosted.org/packages/48/a7/9ddb222de15373fc006cfb4357f70eb3c09be588c9f69834f8d78a032f79/zope.password-4.1.0.tar.gz" } ], "4.2.0": [ { "comment_text": "", "digests": { "md5": "55692cd561d13501e6416f6b1e5ee163", "sha256": "52bd4fdea03969ddf36b15bc34b793085a48e267b495d3b903b33df79ce836d0" }, "downloads": -1, "filename": "zope.password-4.2.0.tar.gz", "has_sig": true, "md5_digest": "55692cd561d13501e6416f6b1e5ee163", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27066, "upload_time": "2016-07-07T19:24:14", "url": "https://files.pythonhosted.org/packages/ce/4f/8e428a92fce1c7f7764ea66c4884fe3fd4295242dd6e46aa6cf67b6a1e67/zope.password-4.2.0.tar.gz" } ], "4.3.0": [ { "comment_text": "", "digests": { "md5": "266a7a8d3778351db718ecf95745cc88", "sha256": "c9f3913d84011f1191063a26428f9a2395aabb8c2df5bc8b96a47c3b212fcf24" }, "downloads": -1, "filename": "zope.password-4.3.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "266a7a8d3778351db718ecf95745cc88", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*", "size": 28664, "upload_time": "2017-08-31T16:15:57", "url": "https://files.pythonhosted.org/packages/6e/d7/46b4d606eea2ed5b0f83303648bac1e4d9598246fcdcf534c26796e86b5b/zope.password-4.3.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "dbbd2f2493644e9997dd103f45985465", "sha256": "ca8fb26977dcb6a47c8b1a32948a478173f2bb391596b7995b0e9f31fc242ccc" }, "downloads": -1, "filename": "zope.password-4.3.0.tar.gz", "has_sig": false, "md5_digest": "dbbd2f2493644e9997dd103f45985465", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*", "size": 34760, "upload_time": "2017-08-31T16:15:59", "url": "https://files.pythonhosted.org/packages/2f/a1/d1f4dce10f1989baa4d0046fe561d3118fac28af8994b88c0e2efd2e6f6d/zope.password-4.3.0.tar.gz" } ], "4.3.1": [ { "comment_text": "", "digests": { "md5": "5fd63a2362dda2575bb7a7ad0bc76555", "sha256": "3d05050f9f6eb5909660fa7914cd8bf19ffd0e55c87463109dbd819cecc30d7b" }, "downloads": -1, "filename": "zope.password-4.3.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5fd63a2362dda2575bb7a7ad0bc76555", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*", "size": 28766, "upload_time": "2017-09-01T13:10:18", "url": "https://files.pythonhosted.org/packages/f8/b3/c1249c2b7a116753fc3bdd5da3257bd76587f3d97677f6426ce02f977b78/zope.password-4.3.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "cbb4e90dbed2cdc7b8011735068e5aaf", "sha256": "8868a43fc14ea4b05d1776f97cffa0006425a1c7d59f9c34880dffb4faa9e5a1" }, "downloads": -1, "filename": "zope.password-4.3.1.tar.gz", "has_sig": false, "md5_digest": "cbb4e90dbed2cdc7b8011735068e5aaf", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*", "size": 34891, "upload_time": "2017-09-01T13:10:20", "url": "https://files.pythonhosted.org/packages/28/ed/db7fc7cc5e2eea6afd2328b6ab13dcb9955663bb195ce62c412132f3bf2a/zope.password-4.3.1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "5fd63a2362dda2575bb7a7ad0bc76555", "sha256": "3d05050f9f6eb5909660fa7914cd8bf19ffd0e55c87463109dbd819cecc30d7b" }, "downloads": -1, "filename": "zope.password-4.3.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5fd63a2362dda2575bb7a7ad0bc76555", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*", "size": 28766, "upload_time": "2017-09-01T13:10:18", "url": "https://files.pythonhosted.org/packages/f8/b3/c1249c2b7a116753fc3bdd5da3257bd76587f3d97677f6426ce02f977b78/zope.password-4.3.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "cbb4e90dbed2cdc7b8011735068e5aaf", "sha256": "8868a43fc14ea4b05d1776f97cffa0006425a1c7d59f9c34880dffb4faa9e5a1" }, "downloads": -1, "filename": "zope.password-4.3.1.tar.gz", "has_sig": false, "md5_digest": "cbb4e90dbed2cdc7b8011735068e5aaf", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*", "size": 34891, "upload_time": "2017-09-01T13:10:20", "url": "https://files.pythonhosted.org/packages/28/ed/db7fc7cc5e2eea6afd2328b6ab13dcb9955663bb195ce62c412132f3bf2a/zope.password-4.3.1.tar.gz" } ] }