summaryrefslogtreecommitdiff
path: root/test/fixtures/keys
diff options
context:
space:
mode:
authorDaniel Bevenius <daniel.bevenius@gmail.com>2018-04-12 15:42:03 +0200
committerJames M Snell <jasnell@gmail.com>2018-04-14 11:38:41 -0700
commit5879f480b1bb1e92f18b64693b04dafb2a903d0a (patch)
tree6ba4dc3fe2970e58211e7b7a3b2f3fb511f3e595 /test/fixtures/keys
parent8826cc985acc5588185a1af84260bbaaf7f7c19c (diff)
downloadandroid-node-v8-5879f480b1bb1e92f18b64693b04dafb2a903d0a.tar.gz
android-node-v8-5879f480b1bb1e92f18b64693b04dafb2a903d0a.tar.bz2
android-node-v8-5879f480b1bb1e92f18b64693b04dafb2a903d0a.zip
test: update keys/Makefile to clean and build all
Currently when running make clean, followed by make not all certificates get genenerated. In addition there are also the following error messages related to the startdate in agent8-cert.pem, and agent9-cert.pem: start date is invalid, it should be YYMMDDHHMMSSZ After this commit it is possible to perform the following commands: $ make clean $ make $ make test PR-URL: https://github.com/nodejs/node/pull/19975 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'test/fixtures/keys')
-rw-r--r--test/fixtures/keys/Makefile11
1 files changed, 6 insertions, 5 deletions
diff --git a/test/fixtures/keys/Makefile b/test/fixtures/keys/Makefile
index 27fda1eef2..8df48eef9b 100644
--- a/test/fixtures/keys/Makefile
+++ b/test/fixtures/keys/Makefile
@@ -1,4 +1,4 @@
-all: agent1-cert.pem agent2-cert.pem agent3-cert.pem agent4-cert.pem agent5-cert.pem ca2-crl.pem ec-cert.pem dh512.pem dh1024.pem dh2048.pem dsa1025.pem dsa_private_1025.pem dsa_public_1025.pem rsa_private_1024.pem rsa_private_2048.pem rsa_private_4096.pem rsa_public_1024.pem rsa_public_2048.pem rsa_public_4096.pem
+all: agent1-cert.pem agent1-pfx.pem agent2-cert.pem agent3-cert.pem agent4-cert.pem agent5-cert.pem agent6-cert.pem agent7-cert.pem agent8-cert.pem agent9-cert.pem ca1-cert.pem ca2-crl.pem ca3-cert.pem ec-cert.pem dh512.pem dh1024.pem dh2048.pem dsa1025.pem dsa_private_1025.pem dsa_public_1025.pem rsa_private_1024.pem rsa_private_2048.pem rsa_private_4096.pem rsa_public_1024.pem rsa_public_2048.pem rsa_public_4096.pem
#
@@ -280,7 +280,7 @@ agent8-csr.pem: agent8.cnf agent8-key.pem
openssl req -new -config agent8.cnf -key agent8-key.pem \
-out agent8-csr.pem
-agent8-cert.pem: agent8-csr.pem
+agent8-cert.pem: agent8-csr.pem fake-startcom-root-cert.pem fake-startcom-root-key.pem
openssl ca \
-config fake-startcom-root.cnf \
-keyfile fake-startcom-root-key.pem \
@@ -289,7 +289,7 @@ agent8-cert.pem: agent8-csr.pem
-days 9999 \
-passin "pass:password" \
-in agent8-csr.pem \
- -startdate 20161020235959Z \
+ -startdate 161020235959Z \
-notext -out agent8-cert.pem
@@ -319,7 +319,7 @@ agent9-cert.pem: agent9-csr.pem
-days 9999 \
-passin "pass:password" \
-in agent9-csr.pem \
- -startdate 20161021000001Z \
+ -startdate 161021000001Z \
-notext -out agent9-cert.pem
ec-key.pem:
@@ -380,7 +380,8 @@ rsa_public_4096.pem: rsa_private_4096.pem
openssl rsa -in rsa_private_4096.pem -out rsa_public_4096.pem
clean:
- rm -f *.pem *.srl ca2-database.txt ca2-serial
+ rm -f *.pem *.srl ca2-database.txt ca2-serial fake-startcom-root-serial
+ @> fake-startcom-root-database.txt
test: agent1-verify agent2-verify agent3-verify agent4-verify agent5-verify