Commit 393179e1 authored by Rob Buis's avatar Rob Buis Committed by Commit Bot

Fix generate-test-certs.sh script

Openssl does not take --subj parameter, but -subj.

Bug: 803774
Change-Id: Ie5e1da18941468fc66ea567134a49178b4260aba
Reviewed-on: https://chromium-review.googlesource.com/c/1370177Reviewed-by: default avatarKouhei Ueno <kouhei@chromium.org>
Commit-Queue: Rob Buis <rbuis@igalia.com>
Cr-Commit-Position: refs/heads/master@{#615459}
parent 9d37e79b
......@@ -10,7 +10,7 @@ openssl ecparam -out 127.0.0.1.sxg.key -name prime256v1 -genkey
openssl req -new -sha256 \
-key 127.0.0.1.sxg.key \
-out 127.0.0.1.sxg.csr \
--subj '/CN=127.0.0.1/O=Test/C=US'
-subj '/CN=127.0.0.1/O=Test/C=US'
openssl x509 -req -days 3650 \
-in 127.0.0.1.sxg.csr \
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment