This file is indexed.

/usr/lib/python2.7/dist-packages/SecretStorage-2.0.0.egg-info is in python-secretstorage 2.0.0-1ubuntu1.

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
Metadata-Version: 1.1
Name: SecretStorage
Version: 2.0.0
Summary: Secure storing of passwords and other secrets
Home-page: http://launchpad.net/python-secretstorage
Author: Dmitry Shachnev
Author-email: mitya57@gmail.com
License: BSD
Description: 
        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
        (>= 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 `pythonhosted.org`_.
        
        .. _`Secret Service`: http://standards.freedesktop.org/secret-service/
        .. _`pythonhosted.org`: http://pythonhosted.org/SecretStorage/
        
        Building the module
        ===================
        
        .. note::
           SecretStorage supports all versions of Python since 2.6. Here we assume
           that your Python version is 3.x.
        
        SecretStorage requires these packages to work:
        
        * `dbus-python`_ (available in Debian-based distributions in `python3-dbus package`_);
        * PyCrypto_ (available in Debian-based distributions in `python3-crypto package`_).
        
        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`: http://www.freedesktop.org/wiki/Software/DBusBindings#dbus-python
        .. _PyCrypto: https://www.dlitz.net/software/pycrypto/
        .. _`python3-dbus package`: http://packages.debian.org/sid/python3-dbus
        .. _`python3-crypto package`: http://packages.debian.org/sid/python3-crypto
        .. _Sphinx: http://sphinx-doc.org/
        
        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 :: 4 - Beta
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: POSIX
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.1
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Topic :: Security
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires: dbus
Requires: Crypto