This commit is contained in:
Jakub Warmuz
2015-03-18 14:32:43 +00:00
parent b6203d512c
commit 2d9bce8a7f
+3 -3
View File
@@ -1,10 +1,10 @@
The following commands has been used to generate test keys:
The following command has been used to generate test keys:
for x in 256 512 1024; do openssl genrsa -out rsa${k}_key.pem $k; done
and for the CSR:
python -c from letsencrypt.client.crypto_util import make_csr;
python -c from 'letsencrypt.client.crypto_util import make_csr;
import pkg_resources; open("csr2.pem",
"w").write(make_csr(pkg_resources.resource_string("letsencrypt.client.tests",
"testdata/rsa512_key.pem"), ["example2.com"])[0])
"testdata/rsa512_key.pem"), ["example2.com"])[0])'