-
Notifications
You must be signed in to change notification settings - Fork 30
Open
Description
Current approach is pretty naive - all signed certificates and accompanying metadata and code snippets are inserted into DOM tree which makes even Chrome choke.
For development/testing run this with autosign allowed from localhost:
for j in $(seq 1 500); do
openssl genrsa -out /tmp/host_key.pem 1024
openssl req -new -sha384 -subj "/CN=$(cat /dev/urandom | tr -dc 'a-z0-9' | fold -w 15 | head -n 1)" \
-key /tmp/host_key.pem \
-out /tmp/host_req.pem
curl --cert-status -f -L -H "Content-type: application/pkcs10" \
--data-binary @/tmp/host_req.pem \
-o /tmp/host_cert.pem \
'http://127.0.1.1:8080/api/request/?wait=yes\&autosign=yes'
doneReactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels