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 c59b140 + 9ce4e44 commit 2d37bfeCopy full SHA for 2d37bfe
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