This topic was automatically generated from Slack. You can find the original thread here.
I am trying to decrypt a private key in a js step, then convert it to DER format and base64 encode it for use in a later Python step. I’m getting an error that suggests that it may be unsupported? This is the error I got: Failed to decrypt private key: error:1E08010C:DECODER routines::unsupported
.
I have these imports:
import crypto from "crypto";
import { readFileSync } from "fs";
import { KeyObject, createPrivateKey } from "crypto";
and the error is coming from this function:
const privateKeyObject = createPrivateKey({
key: private_key_pem,
format: "pem",
passphrase: passphrase,
});
Anyone know any work-arounds that don’t involve providing the key decrypted?