From 8d2d7429beb6bf66cb3c4fc35a7a3dbb165a432c Mon Sep 17 00:00:00 2001 From: Rob Crittenden Date: Thu, 24 Jun 2010 11:40:02 -0400 Subject: Clean up crypto code, take advantage of new nss-python capabilities This patch does the following: - drops our in-tree x509v3 parser to use the python-nss one - return more information on certificates - make an API change, renaming cert-get to cert-show - Drop a lot of duplicated code --- ipapython/nsslib.py | 1 - 1 file changed, 1 deletion(-) (limited to 'ipapython/nsslib.py') diff --git a/ipapython/nsslib.py b/ipapython/nsslib.py index 1710a7d7..02bff00a 100644 --- a/ipapython/nsslib.py +++ b/ipapython/nsslib.py @@ -188,7 +188,6 @@ class NSPRConnection(httplib.HTTPConnection): httplib.HTTPConnection.__init__(self, host, port, strict) logging.debug('%s init %s', self.__class__.__name__, host) - nss.nss_init_nodb() self.sock = io.Socket() def connect(self): -- cgit