* The following classes were added:

InitParameters
      InitContext

  * The following module functions were added:
      nss.nss.nss_initialize()
      nss.nss.nss_init_context()
      nss.nss.nss_shutdown_context()
      nss.nss.nss_init_flags()

  * The following constants were added:
      NSS_INIT_READONLY
      NSS_INIT_NOCERTDB
      NSS_INIT_NOMODDB
      NSS_INIT_FORCEOPEN
      NSS_INIT_NOROOTINIT
      NSS_INIT_OPTIMIZESPACE
      NSS_INIT_PK11THREADSAFE
      NSS_INIT_PK11RELOAD
      NSS_INIT_NOPK11FINALIZE
      NSS_INIT_RESERVED
      NSS_INIT_COOPERATE


git-svn-id: svn://10.0.0.236/trunk@260885 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
jdennis%redhat.com 2010-07-25 22:40:38 +00:00
parent ca5ec10774
commit b084a3bc39
4 changed files with 1563 additions and 19 deletions

View File

@ -1,3 +1,27 @@
2010-07-25 John Dennis <jdennis@redhat.com> 0.10
* The following classes were added:
InitParameters
InitContext
* The following module functions were added:
nss.nss.nss_initialize()
nss.nss.nss_init_context()
nss.nss.nss_shutdown_context()
nss.nss.nss_init_flags()
* The following constants were added:
NSS_INIT_READONLY
NSS_INIT_NOCERTDB
NSS_INIT_NOMODDB
NSS_INIT_FORCEOPEN
NSS_INIT_NOROOTINIT
NSS_INIT_OPTIMIZESPACE
NSS_INIT_PK11THREADSAFE
NSS_INIT_PK11RELOAD
NSS_INIT_NOPK11FINALIZE
NSS_INIT_RESERVED
NSS_INIT_COOPERATE
2010-05-28 John Dennis <jdennis@redhat.com> 0.9
* Correct definciencies in auth_certificate_callback found in several

View File

@ -50,7 +50,7 @@ from distutils.util import subst_vars, change_root
from distutils.command.build_py import build_py as _build_py
from distutils.command.sdist import sdist as _sdist
version = "0.9"
version = "0.10"
def update_version():
"""If the version string in __init__.py doesn't match the current

File diff suppressed because it is too large Load Diff

View File

@ -327,7 +327,7 @@ typedef struct {
} BasicConstraints;
/* ========================================================================== */
/* ============================== CertificateRequest Class =========================== */
/* ========================= CertificateRequest Class ======================= */
/* ========================================================================== */
typedef struct {
@ -337,6 +337,24 @@ typedef struct {
CERTCertificateRequest *cert_req;
} CertificateRequest;
/* ========================================================================== */
/* =========================== InitParameters Class ========================= */
/* ========================================================================== */
typedef struct {
PyObject_HEAD
NSSInitParameters params;
} InitParameters;
/* ========================================================================== */
/* ============================= InitContext Class ========================== */
/* ========================================================================== */
typedef struct {
PyObject_HEAD
NSSInitContext *context;
} InitContext;
/* ========================================================================== */
typedef struct {