Skip to content
Snippets Groups Projects
Commit 0311fb53 authored by Frank Sauerburger's avatar Frank Sauerburger
Browse files

Revert "Use null as fallback password"

This reverts commit ce9c6490.
parent ce9c6490
No related branches found
No related tags found
No related merge requests found
Pipeline #7710 waiting for manual action
......@@ -21,7 +21,7 @@ const P12Download = ({privateKey, certPems, password}) => {
return
}
const p12Asn1 = pkcs12.toPkcs12Asn1(
privateKey, cert, password || null,
privateKey, cert, password,
{algorithm: '3des'}
)
const p12 = asn1.toDer(p12Asn1).getBytes()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment