Skip to main content

Zope Security Framework

Project description

zope.security

Latest release Supported Python versions https://travis-ci.org/zopefoundation/zope.security.svg?branch=master https://coveralls.io/repos/github/zopefoundation/zope.security/badge.svg?branch=master Documentation Status

The Security framework provides a generic mechanism to implement security policies on Python objects.

Documentation is available at https://zopesecurity.readthedocs.io/

Changes

4.3.0 (2018-08-24)

  • Add the interface ISystemPrincipal and make zope.security.management.system_user a regular object that implements this interface. This facilitates providing adapter registrations specifically for the system_user.

4.2.3 (2018-08-09)

  • Add support for Python 3.7.

4.2.2 (2018-01-11)

  • Make the pure-Python proxy on Python 2 not check permissions for __unicode__ just like the C implementation. Note that __str__ is checked for both implementations on both Python 2 and 3, but if there is no __unicode__ method defined, Python 2’s automatic fallback to __str__ is not checked when unicode is called. See issue 10.

4.2.1 (2017-11-30)

  • Fix the default values for Permission fields title and description under Python 2. See issue 48.

  • Change the IPermission.id from Text (unicode) to a NativeStringLine. This matches what ZCML creates and what is usually written in source code.

4.2.0 (2017-09-20)

  • Fix the extremely rare potential for a crash when the C extensions are in use. See issue 35.

  • Fix issue 7: The pure-Python proxy didn’t propagate TypeError from __repr__ and __str__ like the C implementation did.

  • Fix issue 27: iteration of zope.interface.providedBy() is now allowed by default on all versions of Python. Previously it only worked on Python 2. Note that providedBy returns unproxied objects for backwards compatibility.

  • Fix __length_hint__ of proxied iterator objects. Previously it was ignored.

  • Drop support for Python 3.3.

  • Enable coveralls.io for coverage measurement and run doctests on all supported Python versions.

  • Fix issue 9: iteration of itertools.groupby objects is now allowed by default. In addition, iteration of all the custom iterator types defined in itertools are also allowed by default.

  • Simplify the internal _compat.py module now that we only run on newer Python versions. See PR 32.

  • Respect PURE_PYTHON at runtime. At build time, always try to build the C extensions on supported platforms, ignoring PURE_PYTHON. See issue 33.

  • Fix watching checkers (ZOPE_WATCH_CHECKERS=1) in pure-Python mode. See issue 8.

  • Remove unused internal files from tests/.

  • Remove zope.security.setup. It was unused and did not work anyway.

  • Fix the pure-Python proxy on Python 2 letting __getslice__ and __setslice__ fall through to __getitem__ or __setitem__, respectively, if it raised an error.

  • Fix the pure-Python proxy calling a wrapped __getattr__ or __getattribute__ more than once in situations where the C implementation only called it one time (when it raised an AttributeError).

  • Reach 100% test coverage and maintain it via automated checks.

4.1.1 (2017-05-17)

  • Fix issue 23: iteration of collections.OrderedDict and its various views is now allowed by default on all versions of Python.

  • As a further fix for issue 20, iteration of BTree itself is now allowed by default.

4.1.0 (2017-04-24)

  • When testing PURE_PYTHON environments under tox, avoid poisoning the user’s global wheel cache.

  • Drop support for Python 2.6 and 3.2.

  • Add support for Python 3.5 and 3.6.

  • Fix issue 20: iteration of pure-Python BTrees.items(), and also creating a list from BTrees.items() on Python 3. The same applies for keys() and values().

4.0.3 (2015-06-02)

  • Fix iteration over security proxies in Python 3 using the pure-Python implementation.

4.0.2 (2015-06-02)

  • Fix compatibility with zope.proxy 4.1.5 under PyPy.

  • Fix the very first call to removeSecurityProxy returning incorrect results if given a proxy under PyPy.

4.0.1 (2014-03-19)

  • Add support for Python 3.4.

4.0.0 (2013-07-09)

  • Update boostrap.py to version 2.2.

  • Bugfix: ZOPE_WATCH_CHECKERS=2 used to incorrectly suppress unauthorized/forbidden warnings.

  • Bugfix: ZOPE_WATCH_CHECKERS=1 used to miss most of the checks.

4.0.0b1 (2013-03-11)

  • Add support for PyPy.

  • Fix extension compilation on windows python 3.x

4.0.0a5 (2013-02-28)

  • Undo changes from 4.0.0a4. Instead, zope.untrustedpython is only included during Python 2 installs.

4.0.0a4 (2013-02-28)

  • Remove untrustedpython extra again, since we do not want to support zope.untrustedpython in ZTK 2.0. If BBB is really needed, we will create a 3.10.0 release.

4.0.0a3 (2013-02-15)

  • Fix test breakage in 4.0.0a2 due to deprecation strategy.

4.0.0a2 (2013-02-15)

  • Add back the untrustedpython extra: now pulls in zope.untrustedpython. Restored deprecated backward-compatible imports for zope.security.untrustedpython.{builtins,interpreter,rcompile} (the extra and the imports are to be removed in version 4.1).

4.0.0a1 (2013-02-14)

  • Add support for Python 3.2 and 3.3.

  • Bring unit test coverage to 100%.

  • zope.security.untrustedpython moved to separate project: zope.untrustedpython

  • Convert use of assert in non-test code to apprpriate error types:

    • Non-dict’s passed to Checker.__init__.

  • Remove dprecattion of zope.security.adapter.TrustedAdapterFactory. Although it has been marked as deprectaed since before Zope3 3.2, current versions of zope.compoent still rely on it.

  • Convert doctests to Sphinx documentation in ‘docs’.

  • Add setup.py docs alias (installs Sphinx and dependencies).

  • Add setup.py dev alias (runs setup.py develop plus installs nose and coverage).

  • Make non-doctest tests fully independent of zope.testing.

    Two modules, zope.security.checker and zope.security.management, register cleanups with zope.testing IFF it is importable, but the tests no longer rely on it.

  • Enable building extensions without the svn:external of the zope.proxy headers into our include dir.

  • Bump zope.proxy dependency to “>= 4.1.0” to enable compilation on Py3k.

  • Replace deprecated zope.component.adapts usage with equivalent zope.component.adapter decorator.

  • Replace deprecated zope.interface.classProvides usage with equivalent zope.interface.provider decorator.

  • Replace deprecated zope.interface.implements usage with equivalent zope.interface.implementer decorator.

  • Drop support for Python 2.4 and 2.5.

  • Add test convenience helper create_interaction and with interaction().

3.9.0 (2012-12-21)

  • Pin zope.proxy >= 4.1.0

  • Ship with an included proxy.h header which is compatible with the 4.1.x version ov zope.proxy.

3.8.5 (2012-12-21)

  • Ship with an included proxy.h header which is compatible with the supported versions of zope.proxy.

3.8.4 (2012-12-20)

  • Pin zope.proxy >= 3.4.2, <4.1dev

3.8.3 (2011-09-24)

  • Fix a regression introduced in 3.8.1: zope.location's LocationProxy did not get a security checker if zope.security.decorator was not imported manually. Now zope.security.decorator is imported in zope.security.proxy without re-introducing the circular import fixed in 3.8.1.

3.8.2 (2011-05-24)

  • Fix a test that failed on Python 2.7.

3.8.1 (2011-05-03)

  • Fix circular import beween zope.security.decorator and zope.security.proxy which led to an ImportError when only importing zope.security.decorator.

3.8.0 (2010-12-14)

  • Add tests for our own configure.zcml.

  • Add zcml extra dependencies; run related tests only if zope.configuration is available.

  • Run tests related to the untrustedpython functionality only if RestrictedPython is available.

3.7.3 (2010-04-30)

  • Prefer the standard library’s doctest module to the one from zope.testing.

  • Ensure PermissionIdsVocabulary directly provides IVocabularyFactory, even though it might be unnecessary because IVocabularyFactory is provided in ZCML.

  • Remove the dependency on the zope.exceptions package: zope.security.checker now imports DuplicationError from zope.exceptions if available, otherwise it defines a package-specific DuplicationError class which inherits from Exception.

3.7.2 (2009-11-10)

  • Add compatibility with Python 2.6 abstract base classes.

3.7.1 (2009-08-13)

  • Fix for LP bug 181833 (from Gustavo Niemeyer). Before “visiting” a sub-object, a check should be made to ensure the object is still valid. Because garbage collection may involve loops, if you garbage collect an object, it is possible that the actions done on this object may modify the state of other objects. This may cause another round of garbage collection, eventually generating a segfault (see LP bug). The Py_VISIT macro does the necessary checks, so it is used instead of the previous code.

3.7.0 (2009-05-13)

  • Make pytz a soft dependency: the checker for pytz.UTC is created / tested only if the package is already present. Run bin/test_pytz to run the tests with pytz on the path.

3.6.3 (2009-03-23)

  • Ensure that simple zope.schema’s VocabularyRegistry is used for PermissionVocabulary tests, because it’s replaced implicitly in environments with zope.app.schema installed that makes that tests fail.

  • Fix a bug in DecoratedSecurityCheckerDescriptor which made security-wrapping location proxied exception instances throw exceptions on Python 2.5. See https://bugs.launchpad.net/zope3/+bug/251848

3.6.2 (2009-03-14)

  • Add zope.i18nmessageid.Message to non-proxied basic types. It’s okay, because messages are immutable. Done previously by zope.app.security.

  • Add __name__ and __parent__ attributes to list of available by default. Done previously by zope.app.security.

  • Move PermissionsVocabulary and PermissionIdsVocabulary vocabularies to the zope.security.permission module from the zope.app.security package.

  • Add zcml permission definitions for most common and useful permissions, like zope.View and zope.ManageContent, as well as for the special zope.Public permission. They are placed in a separate permissions.zcml file, so it can be easily excluded/redefined. They are selected part of permissions moved from zope.app.security and used by many zope.* packages.

  • Add addCheckerPublic helper function in zope.security.testing module that registers the “zope.Public” permission as an IPermission utility.

  • Add security declarations for the zope.security.permisson.Permission class.

  • Improve test coverage.

3.6.1 (2009-03-10)

  • Use from imports instead of zope.deferred to avoid circular import problems, thus drop dependency on zope.deferredimport.

  • Raise NoInteraction when zope.security.checkPermission is called without interaction being active (LP #301565).

  • Don’t define security checkers for deprecated set types from the “sets” module on Python 2.6. It’s discouraged to use them and set and frozenset built-in types should be used instead.

  • Change package’s mailng list address to zope-dev at zope.org as zope3-dev at zope.org is now retired.

  • Remove old zpkg-related files.

3.6.0 (2009-01-31)

  • Install decorated security checker support on LocationProxy from the outside.

  • Add support to bootstrap on Jython.

  • Move the protectclass module from zope.app.security to this package to reduce the number of dependencies on zope.app.security.

  • Move the <module> directive implementation from zope.app.security to this package.

  • Move the <class> directive implementation from zope.app.component to this package.

3.5.2 (2008-07-27)

  • Make C code compatible with Python 2.5 on 64bit architectures.

3.5.1 (2008-06-04)

  • Add frozenset, set, reversed, and sorted to the list of safe builtins.

3.5.0 (2008-03-05)

  • Changed title for zope.security.management.system_user to be more presentable.

3.4.3 - (2009/11/26)

  • Backport a fix made by Gary Poster to the 3.4 branch: Fix for LP bug 181833 (from Gustavo Niemeyer). Before “visiting” a sub-object, a check should be made to ensure the object is still valid. Because garbage collection may involve loops, if you garbage collect an object, it is possible that the actions done on this object may modify the state of other objects. This may cause another round of garbage collection, eventually generating a segfault (see LP bug). The Py_VISIT macro does the necessary checks, so it is used instead of the previous code.

3.4.2 - (2009/03/23)

  • Add dependency on zope.thread to setup.py; without it, the tests were failing.

  • Backport a fix made by Albertas Agejevas to the 3.4 branch. He fixed a bug in DecoratedSecurityCheckerDescriptor which made security-wrapping location proxied exception instances throw exceptions on Python 2.5. See https://bugs.launchpad.net/zope3/+bug/251848

3.4.1 - 2008/07/27

  • Make C code compatible with Python 2.5 on 64bit architectures.

3.4.0 (2007-10-02)

  • Update meta-data.

3.4.0b5 (2007-08-15)

  • Fix a circular import in the C implementation.

3.4.0b4 (2007-08-14)

  • Improve ugly/brittle ID of zope.security.management.system_user.

3.4.0b3 (2007-08-14)

  • Add support for Python 2.5.

  • Bug: zope.security.management.system_user wasn’t a valid principal (didn’t provide IPrincipal).

  • Bug: Fix inclusion of doctest to use the doctest module from zope.testing. Now tests can be run multiple times without breaking. (#98250)

3.4.0b2 (2007-06-15)

  • Bug: Remove stack extraction in newInteraction. When using eggs this is an extremly expensive function. The publisher is now more than 10 times faster when using eggs and about twice as fast with a zope trunk checkout.

3.4.0b1

  • Temporarily fixed the hidden (and accidental) dependency on zope.testing to become optional.

Note: The releases between 3.2.0 and 3.4.0b1 where not tracked as an individual package and have been documented in the Zope 3 changelog.

3.2.0 (2006-01-05)

  • Corresponds to the verison of the zope.security package shipped as part of the Zope 3.2.0 release.

  • Remove deprecated helper functions, proxy.trustedRemoveSecurityProxy and proxy.getProxiedObject.

  • Make handling of management.{end,restore}Interaction more careful w.r.t. edge cases.

  • Make behavior of canWrite consistent with canAccess: if canAccess does not raise ForbiddenAttribute, then neither will canWrite. See: http://www.zope.org/Collectors/Zope3-dev/506

  • Code style / documentation / test fixes.

3.1.0 (2005-10-03)

  • Add support for use of the new Python 2.4 datatypes, set and frozenset, within checked code.

  • Make the C security proxy depend on the proxy.h header from the zope.proxy package.

  • XXX: the spelling of the #include is bizarre! It seems to be related to zpkg-based builds, and should likely be revisited. For the moment, I have linked in the zope.proxy package into our own include directory. See the subversion checkin: http://svn.zope.org/Zope3/?rev=37882&view=rev

  • Update checker to avoid re-proxying objects which have and explicit __Security_checker__ assigned.

  • Corresponds to the verison of the zope.security package shipped as part of the Zope 3.1.0 release.

  • Clarify contract of IChecker to indicate that its check* methods may raise only Forbidden or Unauthorized exceptions.

  • Add interfaces, (IPrincipal, IGroupAwarePrincipal, IGroup, and IPermission) specifying contracts of components in the security framework.

  • Code style / documentation / test fixes.

3.0.0 (2004-11-07)

  • Corresponds to the version of the zope.security package shipped as part of the Zope X3.0.0 release.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

zope.security-4.3.0.tar.gz (118.8 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

zope.security-4.3.0-cp37-cp37m-win_amd64.whl (125.8 kB view details)

Uploaded CPython 3.7mWindows x86-64

zope.security-4.3.0-cp37-cp37m-win32.whl (123.7 kB view details)

Uploaded CPython 3.7mWindows x86

zope.security-4.3.0-cp37-cp37m-macosx_10_13_x86_64.whl (123.7 kB view details)

Uploaded CPython 3.7mmacOS 10.13+ x86-64

zope.security-4.3.0-cp36-cp36m-win_amd64.whl (125.8 kB view details)

Uploaded CPython 3.6mWindows x86-64

zope.security-4.3.0-cp36-cp36m-win32.whl (123.7 kB view details)

Uploaded CPython 3.6mWindows x86

zope.security-4.3.0-cp35-cp35m-win_amd64.whl (125.8 kB view details)

Uploaded CPython 3.5mWindows x86-64

zope.security-4.3.0-cp35-cp35m-win32.whl (123.7 kB view details)

Uploaded CPython 3.5mWindows x86

zope.security-4.3.0-cp34-cp34m-win_amd64.whl (120.9 kB view details)

Uploaded CPython 3.4mWindows x86-64

zope.security-4.3.0-cp34-cp34m-win32.whl (120.9 kB view details)

Uploaded CPython 3.4mWindows x86

zope.security-4.3.0-cp27-cp27m-win_amd64.whl (121.5 kB view details)

Uploaded CPython 2.7mWindows x86-64

zope.security-4.3.0-cp27-cp27m-win32.whl (121.4 kB view details)

Uploaded CPython 2.7mWindows x86

File details

Details for the file zope.security-4.3.0.tar.gz.

File metadata

  • Download URL: zope.security-4.3.0.tar.gz
  • Upload date:
  • Size: 118.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.7.0

File hashes

Hashes for zope.security-4.3.0.tar.gz
Algorithm Hash digest
SHA256 ab4a6ab7e0be627c5bbee3afa848c3013b64c5054b1f7a2d73370f82220c15a3
MD5 ac382dfc97792a23583f8e55c05db890
BLAKE2b-256 6b8a6e5ab725cebd3b1db870c9745516873c2002f944e1e2bd275156ac92ac75

See more details on using hashes here.

File details

Details for the file zope.security-4.3.0-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: zope.security-4.3.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 125.8 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.7.0

File hashes

Hashes for zope.security-4.3.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 eeea35bfcb9061b73225436881b651c278519a3e5ac1f1eb86945e5fda44e8dd
MD5 da750ad49fa39d231525f81f45878d8e
BLAKE2b-256 225e68590300bc6feac6950af005d65eacb8bde3a9b82fb3367162ed74bbece2

See more details on using hashes here.

File details

Details for the file zope.security-4.3.0-cp37-cp37m-win32.whl.

File metadata

  • Download URL: zope.security-4.3.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 123.7 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.7.0

File hashes

Hashes for zope.security-4.3.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 ede44823a4a4e28fa8e26c5c79cbe2b58da674e717b0339aff749d9f9be69f8b
MD5 a26f8ff52042d3c027f28b8250a32fb9
BLAKE2b-256 18d7026b41947fb7de41753d1f1d7d7e74900cdcf22a4ab0565d48d9bdc6e6a6

See more details on using hashes here.

File details

Details for the file zope.security-4.3.0-cp37-cp37m-macosx_10_13_x86_64.whl.

File metadata

  • Download URL: zope.security-4.3.0-cp37-cp37m-macosx_10_13_x86_64.whl
  • Upload date:
  • Size: 123.7 kB
  • Tags: CPython 3.7m, macOS 10.13+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.7.0

File hashes

Hashes for zope.security-4.3.0-cp37-cp37m-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 cb959e470c411763e3bcaac21ddf0385ddd9609bb38d70d93a9890d09221f257
MD5 64368a16f89dcc31c0469c9625d5e31a
BLAKE2b-256 a5d248ca976a9fee6bb8c5857788b0dc52864983b31fd6d65d8fd6046e5ed541

See more details on using hashes here.

File details

Details for the file zope.security-4.3.0-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: zope.security-4.3.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 125.8 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.6.6

File hashes

Hashes for zope.security-4.3.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 dd996a1a3f259002edf5c8e89fbe2ac5737c58c37b05271e636cbdbd6e515bd2
MD5 a4d598107302e0d0111d37deb83e0172
BLAKE2b-256 a02ef38712f6051c84949306522118418814a351edc5b2a23877088d1bc54aaa

See more details on using hashes here.

File details

Details for the file zope.security-4.3.0-cp36-cp36m-win32.whl.

File metadata

  • Download URL: zope.security-4.3.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 123.7 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.6.6

File hashes

Hashes for zope.security-4.3.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 b23bec81cc679f40fb266c95cadf712f77bd7e335ebde3f36ac34efa61d60bd8
MD5 649d8e2a392e69af24fcaa32818232f8
BLAKE2b-256 ce932ee21e37196f4fa9687b1e9779a9fe0a7803013829e4ab80e61820de8a6f

See more details on using hashes here.

File details

Details for the file zope.security-4.3.0-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: zope.security-4.3.0-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 125.8 kB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.5.3

File hashes

Hashes for zope.security-4.3.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 7d866639d7e8e31a18ebe61257db0643bda169ffab2ff7782a7b52f6ada8ee26
MD5 7d8438a6a39a4f2ec9b80bac84e4db01
BLAKE2b-256 1d6ec3e80a0e233bd93a0fe484ebf071ad9008cb9d7f5a4a310259f428dd20c5

See more details on using hashes here.

File details

Details for the file zope.security-4.3.0-cp35-cp35m-win32.whl.

File metadata

  • Download URL: zope.security-4.3.0-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 123.7 kB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.5.3

File hashes

Hashes for zope.security-4.3.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 067ed42064ebfbd3dbabff61e670f9f0c4f9955bbb7f9fb79e342b9e4b82b0be
MD5 98aa0ad2656b8b0b338c14fc87203e93
BLAKE2b-256 3e4d1c311dd235953d4f67a1a265d97b46be07ec2a27d70d8f32c79bbf419c53

See more details on using hashes here.

File details

Details for the file zope.security-4.3.0-cp34-cp34m-win_amd64.whl.

File metadata

  • Download URL: zope.security-4.3.0-cp34-cp34m-win_amd64.whl
  • Upload date:
  • Size: 120.9 kB
  • Tags: CPython 3.4m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.4.4

File hashes

Hashes for zope.security-4.3.0-cp34-cp34m-win_amd64.whl
Algorithm Hash digest
SHA256 1d8f34dc8855fedb01ea5f3d9f826937a71866e62f42d5ce80fe09f48176a389
MD5 c70f0a9aaaf6435eebc8e7353ff04dc4
BLAKE2b-256 741ed1018aaaf3bc8f1cf941990d0ad44dfca674376a6eb9c4cc4a3fa7b0d99e

See more details on using hashes here.

File details

Details for the file zope.security-4.3.0-cp34-cp34m-win32.whl.

File metadata

  • Download URL: zope.security-4.3.0-cp34-cp34m-win32.whl
  • Upload date:
  • Size: 120.9 kB
  • Tags: CPython 3.4m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/3.4.4

File hashes

Hashes for zope.security-4.3.0-cp34-cp34m-win32.whl
Algorithm Hash digest
SHA256 b82079515ade63ed62ca95b70a904731fa0fb01bb65d2634905d9594797dd8d0
MD5 4e81d322daf08ffe288bda26ac9ce2fc
BLAKE2b-256 9b473e2fdbcd5be398e40cb766be95a54b828437970a6684b673914957906cb8

See more details on using hashes here.

File details

Details for the file zope.security-4.3.0-cp27-cp27m-win_amd64.whl.

File metadata

  • Download URL: zope.security-4.3.0-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 121.5 kB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/2.7.15

File hashes

Hashes for zope.security-4.3.0-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 07ca1f5840526924cd66ea75564eb9752b8224e3444f5234ae6dab9e277d5703
MD5 1068d5d1e92cd4571878a28dfaebbc4a
BLAKE2b-256 dff687248ec58db0b22a05d893a32c359c295f85114ad8a941f78d78f0386e28

See more details on using hashes here.

File details

Details for the file zope.security-4.3.0-cp27-cp27m-win32.whl.

File metadata

  • Download URL: zope.security-4.3.0-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 121.4 kB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/2.7.15

File hashes

Hashes for zope.security-4.3.0-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 1454d8af26bf940d90b705924df2fbc9e03a2869c29447116e24e7e1dafcee1e
MD5 a9b5347cd1744d4e840a671b1cbb02f1
BLAKE2b-256 15b0d5788113cfb80cf4caa044e680f0b16725cc82f8eb5bbde6ef6396624597

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page