本文整理汇总了Python中cpc.util.conf.server_conf.ServerConf.getCaConfigFile方法的典型用法代码示例。如果您正苦于以下问题:Python ServerConf.getCaConfigFile方法的具体用法?Python ServerConf.getCaConfigFile怎么用?Python ServerConf.getCaConfigFile使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类cpc.util.conf.server_conf.ServerConf
的用法示例。
在下文中一共展示了ServerConf.getCaConfigFile方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: OpenSSL
# 需要导入模块: from cpc.util.conf.server_conf import ServerConf [as 别名]
# 或者: from cpc.util.conf.server_conf.ServerConf import getCaConfigFile [as 别名]
#.........这里部分代码省略.........
f = open(self.conf.getCAIndexFile(), 'w')
f.close()
self._generateCaConf()
def _generateCaChainFile(self):
file = open(self.conf.getCaChainFile(), "w")
shutil.copyfile(self.conf.getCACertFile(), self.conf.getCaChainFile())
def _generateCert(self, privateKeyFile, certFile, certReqConfigFile):
'''
generates and cert request based on the provided private key
writes a cert to the provided certFile path
@input String privateKeyFile: path to the private key
@Input String certFile: path to the cert file
@Input String certReqConfigFile: path to the certificate configuration file
'''
args = ["openssl", "req", "-outform", "PEM", "-new", "-key", \
privateKeyFile,
"-config", certReqConfigFile,
"-out", self.conf.getCertRequestFile()]
p = subprocess.Popen(args, stdout=subprocess.PIPE,
stderr=subprocess.PIPE)
(stdout, stderr) = p.communicate()
if p.returncode == 1:
raise SetupError(
"An error occured while generating a certificate request\n openssl returned the following error:\n" % stderr)
args = ["openssl", "ca", "-in",
self.conf.getCertRequestFile(), "-config",
self.conf.getCaConfigFile(), "-keyfile", \
self.conf.getCAPrivateKey(),
"-out", certFile]
p = subprocess.Popen(args, stdin=subprocess.PIPE,
stdout=subprocess.PIPE,
stderr=subprocess.PIPE)
(stdout, stderr) = p.communicate("y\ny\n")
if p.returncode == 1:
raise SetupError(
"An error occured while generating a certificate request\n openssl returned the following error:\n" % stderr)
#cleanup
os.remove(self.conf.getCertRequestFile())
#CONVERT TO PEM FORMAT
args = ["openssl", "x509",
"-in", certFile,
"-out", certFile,
"-outform", "PEM"]
subprocess.call(args)
def _generateRootCert(self):
'''
generates a root certificate. This is required to sign new certificates
'''
args = ["openssl", "req", "-outform", "PEM", "-config", \
self.conf.getCaConfigFile(), "-new", "-key", \
self.conf.getCAPrivateKey(), "-out", \
self.conf.getCertRequestFile()]