From: ale Date: Sat, 27 Sep 2014 08:32:33 +0000 (+0100) Subject: use the specified digest for the CSR X-Git-Url: https://v.licheni.net/stack/cam.git/commitdiff_plain/537b055e1716170ab5b97df69aba6269a285cce2?ds=sidebyside use the specified digest for the CSR --- diff --git a/cam/ca.py b/cam/ca.py index f870389..3344c43 100644 --- a/cam/ca.py +++ b/cam/ca.py @@ -187,6 +187,7 @@ class CA(object): openssl_wrap.run_with_config( self.basedir, conf_file, 'req', '-new', '-keyout', cert.private_key_file, + '-' + self.config['signature_algorithm'], '-nodes', '-out', csr_file) os.chmod(cert.private_key_file, 0600) openssl_wrap.run_with_config(