diff options
author | Rob Austein <sra@hactrn.net> | 2010-03-13 22:38:13 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2010-03-13 22:38:13 +0000 |
commit | 5dae56baf99b4140c77a541a918fe31c13b5ae01 (patch) | |
tree | 98f9324a2b39c2ec96bdf7449374183f817f6e41 /myrpki.rototill/yamltest.py | |
parent | 6afae8344572622f2f76724a8bc2dab31a680621 (diff) |
Checkpoint. Switch to using "openssl genrsa" rather than "openssl req
-newkey", because the latter is unpredictable across OpenSSL versions,
sometimes it writes RSA keys in PKCS #1 RSA format, sometimes it
writes them in PKCS #8 format. At the moment POW only understands the
old PKCS #1 format, so use that.
svn path=/myrpki.rototill/PLAN; revision=3081
Diffstat (limited to 'myrpki.rototill/yamltest.py')
-rw-r--r-- | myrpki.rototill/yamltest.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/myrpki.rototill/yamltest.py b/myrpki.rototill/yamltest.py index e5bc3155..8a6890a1 100644 --- a/myrpki.rototill/yamltest.py +++ b/myrpki.rototill/yamltest.py @@ -381,7 +381,8 @@ class allocation(object): r = { ("myrpki", "handle") : self.name, ("myrpki", "run_pubd") : str(self.runs_pubd()), - ("myrpki", "run_rootd") : str(self.is_root()) } + ("myrpki", "run_rootd") : str(self.is_root()), + ("myrpki", "openssl") : prog_openssl } if not self.is_hosted(): r["irdbd", "sql-database"] = "irdb%d" % self.engine |