Unverified Commit 2b01d4a2 authored by neil's avatar neil Committed by GitHub
Browse files

Merge pull request #3423 from ghen2/dev

No need to include EC parameters explicitly with the private key.
parents 17f5e557 a730a081
...@@ -1124,7 +1124,7 @@ _createkey() { ...@@ -1124,7 +1124,7 @@ _createkey() {
if _isEccKey "$length"; then if _isEccKey "$length"; then
_debug "Using ec name: $eccname" _debug "Using ec name: $eccname"
if _opkey="$(${ACME_OPENSSL_BIN:-openssl} ecparam -name "$eccname" -genkey 2>/dev/null)"; then if _opkey="$(${ACME_OPENSSL_BIN:-openssl} ecparam -name "$eccname" -noout -genkey 2>/dev/null)"; then
echo "$_opkey" >"$f" echo "$_opkey" >"$f"
else else
_err "error ecc key name: $eccname" _err "error ecc key name: $eccname"
......
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