This file is indexed.

/usr/share/doc/python3-pykcs11/readme.txt is in python3-pykcs11 1.3.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
 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
========================================================================
        PyKCS11 - PKCS#11 Wrapper for Python - Project Overview
========================================================================

Authors
"""""""

- Copyright (C) 2004 Midori (midori -- a-t -- paipai dot net)
- Copyright (C) 2006-2012 Ludovic Rousseau (ludovic.rousseau@free.fr)


Licence
"""""""

 This file is free software; you can redistribute it and/or modify it
 under the terms of the GNU General Public License as published by
 the Free Software Foundation; either version 2 of the License, or
 (at your option) any later version.

 This program is distributed in the hope that it will be useful, but
 WITHOUT ANY WARRANTY; without even the implied warranty of
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 General Public License for more details.

 You should have received a copy of the GNU General Public License
 along with this program; if not, write to the Free Software
 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA


Unix Howto
""""""""""

$ make build
$ make install (or make install DESTDIR=/foo/bar)


Windows Howto
"""""""""""""

Please use the VS.NET 2003 project to build the library.


Known Bugs
""""""""""

Current version should be compiled using SWIG 1.3.27.
Using 1.3.28+ an error similar to may be generated by the compiler:

src\win32_pykcs11_wrap.cpp error C2440: 'static_cast' : 
                     cannot convert from 'char *' to 'unsigned char *'

The precompiled wrapper included in distribution is being generated
using SWIG 1.3.27.

If in Windows the linker complains that the Python24_d.lib doesn't exists
Please edit the "SWIG-Install-Dir\Lib\python\python.swg" file and replace
following line:
#include "Python.h"

with following code:
#ifdef _DEBUG
  #undef _DEBUG
  #include "Python.h"
  #define _DEBUG
#else
  #include "Python.h"
#endif

This prevents the linker to try to link against the debug version of python lib
that doesn't come with the standard distribution.


History
"""""""

1.3.0 - July 2014, Ludovic Rousseau
	- add Python3 support

1.2.4 - April 2012, Ludovic Rousseau
	- improve epydoc documentation
	- add pinpad support in C_Login() using pin=None
	- add pinpad support in samples getinfo.py and dumpit.py
	- add createObject()

1.2.3 - December 2010, Ludovic Rousseau
	- Add new classes CK_SLOT_INFO, CK_INFO, CK_SESSION_INFO,
	  CK_MECHANISM_INFO and CK_TOKEN_INFO instead of the low level ones
	  to have a __repr__() method.  It is now possible to just print an
	  object of these classes and have a human readable version.
	- Add a new class CK_OBJECT_HANDLE() to replace the low level one
	  and have a __repr__() method for objects returned by findObjects()
	- Move initToken() from class Session to class PyKCS11Lib and add a
	  slot parameter.
	- Add generateKeyPair and destoryObject support in high level
	  interface

1.2.2 - June 2010, Ludovic Rousseau
	Debug low level C_GenerateRandom
	Add seedRandom() and generateRandom() in the high level API

1.2.1 - November 2008, Ludovic Rousseau
	Use src/opensc/pkcs11.h instead of src/rsaref/* files since the
	 files from RSA are not free enough (no right to distribute modified
	 versions for example)
	improve samples/getinfo.py script
	bug fixes

1.2.0 - August 2008, Ludovic Rousseau
	add getMechanismList() and getMechanismInfo()
	add Session().getSessionInfo()
	bug fixes

1.1.1 - December 2006, Giuseppe Amato (Midori)
	bug fixes

1.1.0 - August 2006, Ludovic Rousseau
	Introduce high level API

1.0.2 - July 2006, Ludovic Rousseau
	port to Unix (tested on GNU/Linux only)
	explicit call to SWIG to generate the wrapper

1.0.1 - 2004 Giuseppe Amato (Midori)
	first version
	Windows only