1Metadata-Version: 1.1
2Name: python-potr
3Version: 1.0.1
4Summary: pure Python Off-The-Record encryption
5Home-page: http://python-otr.pentabarf.de
6Author: Kjell Braden
7Author-email: afflux@pentabarf.de
8License: LGPLv3+
9Description: Python OTR
10        ==========
11        This is a pure Python OTR implementation; it does not bind to libotr.
12
13        Install the potr Python module:
14
15            sudo python setup.py install
16
17        **Dependencies**: pycrypto >= 2.1 (see `dlitz/pycrypto <https://github.com/dlitz/pycrypto>`_)
18
19        Usage Notes
20        ===========
21        This module uses pycrypto's RNG. If you use this package in your application and your application
22        uses ``os.fork()``, make sure to call ``Crypto.Random.atfork()`` in both the parent and the child process.
23
24        Reporting bugs
25        ==============
26        Please read the `FAQ <https://github.com/afflux/pure-python-otr/wiki>`_ before submitting your
27        issue to the `tracker <https://github.com/afflux/pure-python-otr/issues>`_.
28Platform: any
29Classifier: Development Status :: 5 - Production/Stable
30Classifier: Intended Audience :: Developers
31Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)
32Classifier: Programming Language :: Python :: 2
33Classifier: Programming Language :: Python :: 3
34Classifier: Topic :: Communications :: Chat
35Classifier: Topic :: Security :: Cryptography
36