This file is indexed.

/usr/lib/python3/dist-packages/SecretStorage-2.3.1.egg-info/PKG-INFO is in python3-secretstorage 2.3.1-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
Metadata-Version: 1.1
Name: SecretStorage
Version: 2.3.1
Summary: Python bindings to FreeDesktop.org Secret Service API
Home-page: https://github.com/mitya57/secretstorage
Author: Dmitry Shachnev
Author-email: mitya57@gmail.com
License: BSD
Description: 
        .. image:: https://api.travis-ci.org/mitya57/secretstorage.svg
           :target: https://travis-ci.org/mitya57/secretstorage
           :alt: Travis CI status
        
        Module description
        ==================
        
        This module provides a way for securely storing passwords and other secrets.
        
        It uses D-Bus `Secret Service`_ API that is supported by GNOME Keyring
        (since version 2.30) and KSecretsService.
        
        The main classes provided are ``secretstorage.Item``, representing a secret
        item (that has a *label*, a *secret* and some *attributes*) and
        ``secretstorage.Collection``, a place items are stored in.
        
        SecretStorage supports most of the functions provided by Secret Service,
        including creating and deleting items and collections, editing items,
        locking and unlocking collections (asynchronous unlocking is also supported).
        
        The documentation can be found on `secretstorage.readthedocs.io`_.
        
        .. _`Secret Service`: https://specifications.freedesktop.org/secret-service/
        .. _`secretstorage.readthedocs.io`: https://secretstorage.readthedocs.io/en/latest/
        
        Building the module
        ===================
        
        .. note::
           SecretStorage supports Python 2.7 and all versions of Python since 3.3.
           Here we assume that your Python version is 3.x.
        
        SecretStorage requires these packages to work:
        
        * `dbus-python`_
        * `python-cryptography`_
        
        To build SecretStorage, use this command::
        
           python3 setup.py build
        
        If you have Sphinx_ installed, you can also build the documentation::
        
           python3 setup.py build_sphinx
        
        .. _`dbus-python`: https://www.freedesktop.org/wiki/Software/DBusBindings/#dbus-python
        .. _`python-cryptography`: https://pypi.python.org/pypi/cryptography
        .. _Sphinx: http://sphinx-doc.org/
        
        Testing the module
        ==================
        
        First, make sure that you have the Secret Service daemon installed.
        The `GNOME Keyring`_ is the reference server-side implementation for the
        Secret Service specification.
        
        .. _`GNOME Keyring`: https://download.gnome.org/sources/gnome-keyring/
        
        Then, start the daemon and unlock the ``default`` collection, if needed.
        The testsuite will fail to run if the ``default`` collection exists and is
        locked. If it does not exist, the testsuite can also use the temporary
        ``session`` collection, as provided by the GNOME Keyring.
        
        Then, run the Python unittest module::
        
           python3 -m unittest discover -s tests
        
        If you want to run the tests in an isolated or headless environment, run
        this command in a D-Bus session::
        
           dbus-run-session -- python3 -m unittest discover -s tests
        
        Get the code
        ============
        
        SecretStorage is available under BSD license. The source code can be found
        on GitHub_.
        
        .. _GitHub: https://github.com/mitya57/secretstorage
        
Platform: Linux
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: POSIX
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Topic :: Security
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires: dbus
Requires: cryptography