This file is indexed.

/usr/lib/python2.7/dist-packages/python_nss-0.16.0.egg-info is in python-nss 0.16.0-1.

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
Metadata-Version: 1.0
Name: python-nss
Version: 0.16.0
Summary: Python bindings for Network Security Services (NSS) and Netscape Portable Runtime (NSPR)
Home-page: http://www.mozilla.org/projects/security/pki/python-nss
Author: John Dennis
Author-email: jdennis@redhat.com
License: MPLv2.0 or GPLv2+ or LGPLv2+
Description: python-nss is a Python binding for NSS (Network Security Services) and
        NSPR (Netscape Portable Runtime). NSS provides cryptography services
        supporting SSL, TLS, PKI, PKIX, X509, PKCS*, etc. NSS is an
        alternative to OpenSSL and used extensively by major software
        projects. NSS is FIPS-140 certified.
        
        NSS is built upon NSPR because NSPR provides an abstraction of common
        operating system services, particularly in the areas of networking and
        process management. Python also provides an abstraction of common
        operating system services but because NSS and NSPR are tightly bound
        python-nss exposes elements of NSPR.
        
        More information on python-nss can be found on the
        `python-nss project page <http://www.mozilla.org/projects/security/pki/python-nss>`_
        
        For information on NSS and NSPR, see the following:
        
            * Network Security Services. `NSS project page <http://www.mozilla.org/projects/security/pki/nss/>`_.
            * Netscape Portable Runtime. `NSPR project page <http://www.mozilla.org/projects/nspr/>`_.
        
        To build python-nss you the C language header files and libraries for
        both NSPR and NSS will need to be installed. This is system and
        distribution specific, as such we cannot give you explicit
        instructions. On Linux typically these packages are called:
        
            * nss-devel
            * nspr-devel
        
        Use your system package manger to install them, for example on Fedora:
        
            % sudo yum install nss-devel nspr-devel
        
        After all packages are installed, then:
        
            % python setup.py build
            % sudo python setup.py install
        
        To generate the API documentation:
        
            % python setup.py build_doc
        
Platform: posix