def POST(self):
data = web.input()
if not ("ident" in data and "csr" in data):
raise web.BadRequest()
crt = sign_csr(data.csr, data.ident)
web.header('Content-Type', "application/json")
return json.dumps({'certificate': crt})
certifier.py 文件源码
python
阅读 18
收藏 0
点赞 0
评论 0
评论列表
文章目录