Fix normalizing \n after \r\n

Broken in c4a7455.
This commit is contained in:
Daniel Huigens 2020-04-22 19:09:50 +02:00
parent 35b4380909
commit 5d71ae8691
2 changed files with 19 additions and 2 deletions

View File

@ -713,8 +713,11 @@ export default {
const indices = [];
for (let i = 0; ; i = index) {
index = bytes.indexOf(LF, i) + 1;
if (index && bytes[index - 2] !== CR) indices.push(index);
else break;
if (index) {
if (bytes[index - 2] !== CR) indices.push(index);
} else {
break;
}
}
if (!indices.length) {
return bytes;

View File

@ -2487,6 +2487,20 @@ amnR6g==
expect(data).to.equal('Hello World!');
});
it('should normalize newlines in encrypted text message', async function() {
const message = openpgp.message.fromText('"BEGIN:VCALENDAR\nVERSION:2.0\nBEGIN:VEVENT\r\nUID:123\r\nDTSTART:20191211T121212Z\r\nDTEND:20191212T121212Z\r\nEND:VEVENT\nEND:VCALENDAR"');
const encrypted = await openpgp.encrypt({
passwords: 'test',
message
});
const decrypted = await openpgp.decrypt({
passwords: 'test',
message: await openpgp.message.readArmored(encrypted.data),
format: 'binary'
});
expect(openpgp.util.decode_utf8(decrypted.data)).to.equal('"BEGIN:VCALENDAR\r\nVERSION:2.0\r\nBEGIN:VEVENT\r\nUID:123\r\nDTSTART:20191211T121212Z\r\nDTEND:20191212T121212Z\r\nEND:VEVENT\r\nEND:VCALENDAR"');
});
});
describe('Errors', function() {