Sign CSR from client using CA root certificate in python
问题 I am new to python and still learning it so my question can be little naive. Please bear with it ;) The problem is client will be sending CSR and I want to sign it with my CA root certificate and return the signed certificate back to client. I have been using this command to do it using command line openssl x509 -req -in device.csr -CA root.pem -CAkey root.key -CAcreateserial -out device.crt -days 500 same thing I want achieve using python. I have come across python library for openssl