I have some public key which looks like MIIBIjANBgkqhkiG9w0BAQEFAAO...
(392 chars).
It used in the browser to encrypt some strings with JSEncrypt.
How can I encrypt strings with that public key using NodeJS crypto module?
I tried this:
const crypto = require('crypto')
const encrypted = crypto.publicEncrypt('MIIBIjA....', '111111')
console.log(encrypted.toString('base64'))
But got error:0909006C:PEM routines:get_name:no start line
.
I also tried to convert the public key and the string into the buffer, got the same error.
If the key in
crypto.publicEncrypt(key, buffer)
is passed as a string, then it is interpreted as PEM encoded key by default.A PEM encoded key consists of a header line, followed by the Base64 encoded body (i.e. the Base64 encoded data of the DER encoded key), and a footer line.
In the posted code snippet, the header line is missing (and presumably the footer line as well), which causes the error.
crypto.publicEncrypt(key, buffer)
uses OAEP as padding by default. JSEncrypt on the other hand only supports PKCS#1 v1.5 padding. So if the implementation should be compatible to JSEncrypt, i.e. if the ciphertext should be decryptable with JSEncrypt, then PKCS#1 v1.5 padding must be specified explicitly.The following NodeJS code encrypts a message with the crypto module and decrypts the ciphertext with JSEncrypt: