10 lines
273 B
Bash
10 lines
273 B
Bash
#!/bin/bash
|
|
|
|
openssl req -new -newkey rsa:2048 -days 3650 -nodes -x509 \
|
|
-keyout privatekey.pem -out publickey.pem \
|
|
-subj "/CN=unit-tests"
|
|
|
|
openssl pkcs12 -export -out privatekey.p12 \
|
|
-inkey privatekey.pem -in publickey.pem \
|
|
-name "key" -passout pass:notasecret
|