We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents db8de95 + 08c5e49 commit b6fe1f9Copy full SHA for b6fe1f9
tools/make_key
@@ -68,8 +68,10 @@ if [ "${password}" == "" ]; then
68
openssl pkcs8 -in ${one} -topk8 -outform DER -out $1.pk8 -nocrypt
69
else
70
echo "creating ${1}.pk8 with password [${password}]"
71
- echo $password | openssl pkcs8 -in ${one} -topk8 -outform DER -out $1.pk8 \
72
- -passout stdin
+ export password
+ openssl pkcs8 -in ${one} -topk8 -outform DER -out $1.pk8 \
73
+ -passout env:password
74
+ unset password
75
fi
76
77
wait
0 commit comments