From 5e6dd8b1edbe7c98f52343c11dcbb7c92b92c67c Mon Sep 17 00:00:00 2001 From: Daniel Huigens Date: Tue, 30 Aug 2022 13:40:57 +0200 Subject: [PATCH] Remove leading newline from clearsigned messages armoring (#1560) --- src/encoding/armor.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/encoding/armor.js b/src/encoding/armor.js index 6f402546..fe17f3ae 100644 --- a/src/encoding/armor.js +++ b/src/encoding/armor.js @@ -386,7 +386,7 @@ export function armor(messageType, body, partIndex, partTotal, customComment, co result.push('-----END PGP MESSAGE, PART ' + partIndex + '-----\n'); break; case enums.armor.signed: - result.push('\n-----BEGIN PGP SIGNED MESSAGE-----\n'); + result.push('-----BEGIN PGP SIGNED MESSAGE-----\n'); result.push('Hash: ' + hash + '\n\n'); result.push(text.replace(/^-/mg, '- -')); result.push('\n-----BEGIN PGP SIGNATURE-----\n');