PKG-INFO 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. Metadata-Version: 1.1
  2. Name: certifi
  3. Version: 2018.1.18
  4. Summary: Python package for providing Mozilla's CA Bundle.
  5. Home-page: http://certifi.io/
  6. Author: Kenneth Reitz
  7. Author-email: me@kennethreitz.com
  8. License: MPL-2.0
  9. Description: Certifi: Python SSL Certificates
  10. ================================
  11. `Certifi`_ is a carefully curated collection of Root Certificates for
  12. validating the trustworthiness of SSL certificates while verifying the identity
  13. of TLS hosts. It has been extracted from the `Requests`_ project.
  14. Installation
  15. ------------
  16. ``certifi`` is available on PyPI. Simply install it with ``pip``::
  17. $ pip install certifi
  18. Usage
  19. -----
  20. To reference the installed certificate authority (CA) bundle, you can use the
  21. built-in function::
  22. >>> import certifi
  23. >>> certifi.where()
  24. '/usr/local/lib/python2.7/site-packages/certifi/cacert.pem'
  25. Enjoy!
  26. 1024-bit Root Certificates
  27. ~~~~~~~~~~~~~~~~~~~~~~~~~~
  28. Browsers and certificate authorities have concluded that 1024-bit keys are
  29. unacceptably weak for certificates, particularly root certificates. For this
  30. reason, Mozilla has removed any weak (i.e. 1024-bit key) certificate from its
  31. bundle, replacing it with an equivalent strong (i.e. 2048-bit or greater key)
  32. certificate from the same CA. Because Mozilla removed these certificates from
  33. its bundle, ``certifi`` removed them as well.
  34. In previous versions, ``certifi`` provided the ``certifi.old_where()`` function
  35. to intentionally re-add the 1024-bit roots back into your bundle. This was not
  36. recommended in production and therefore was removed. To assist in migrating old
  37. code, the function ``certifi.old_where()`` continues to exist as an alias of
  38. ``certifi.where()``. Please update your code to use ``certifi.where()``
  39. instead. ``certifi.old_where()`` will be removed in 2018.
  40. .. _`Certifi`: http://certifi.io/en/latest/
  41. .. _`Requests`: http://docs.python-requests.org/en/latest/
  42. Platform: UNKNOWN
  43. Classifier: Development Status :: 5 - Production/Stable
  44. Classifier: Intended Audience :: Developers
  45. Classifier: License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)
  46. Classifier: Natural Language :: English
  47. Classifier: Programming Language :: Python
  48. Classifier: Programming Language :: Python :: 2
  49. Classifier: Programming Language :: Python :: 2.6
  50. Classifier: Programming Language :: Python :: 2.7
  51. Classifier: Programming Language :: Python :: 3
  52. Classifier: Programming Language :: Python :: 3.3
  53. Classifier: Programming Language :: Python :: 3.4
  54. Classifier: Programming Language :: Python :: 3.5
  55. Classifier: Programming Language :: Python :: 3.6