Does it have the built-in for base64 encoding yet?
otherwise, should I use this plugin? https://github.com/brainfucker/node-base64
In addition, the reason I asking this is that, for Encryption, it can only output hex,binary or ascii for the final(). For example:
var cipher = crypto.createCipheriv('des-ede3-cbc', encryption_key, iv);
var ciph = cipher.update(plaintext, 'utf8', 'hex');
ciph += cipher.final('hex');
var decipher = crypto.createDecipheriv('des-ede3-cbc', encryption_key, iv);
var txt = decipher.update(ciph, 'hex', 'utf8');
txt += decipher.final('utf8');
According to the doc, update() output can be base64. But final() doesn't support base64. I tried and it will break.
If I do this:
var ciph = cipher.update(plaintext, 'utf8', 'base64');
ciph += cipher.final('hex');
Then what should I use for decryption? hex or base64?
therefore, I'm looking for a function to do a quick base64 encoding on my encrypted "Hex" output.
Thanks.