diff --git a/lib/PayPro.js b/lib/PayPro.js index d547203..0b235d4 100644 --- a/lib/PayPro.js +++ b/lib/PayPro.js @@ -344,9 +344,9 @@ function wrapText(text, cols) { function DERtoPEM(der, type) { var type = type || 'UNKNOWN'; return '' - + '-----BEGIN ' + type + '-----' - + wrapText(der.toString('base64'), 64) - + '-----END ' + type + '-----'; + + '-----BEGIN ' + type + '-----\n' + + wrapText(der.toString('base64'), 64) + '\n' + + '-----END ' + type + '-----\n'; } module.exports = PayPro;