Fix stream-reading zero-length (partial) packets

This commit is contained in:
Daniel Huigens 2018-07-25 17:59:53 +02:00
parent 6fdfb2cd9d
commit 8c7e4386af
2 changed files with 3 additions and 1 deletions

View File

@ -233,7 +233,7 @@ export default {
8) | await reader.readByte();
}
}
if (writer) {
if (writer && packet_length > 0) {
let bytesRead = 0;
while (true) {
await writer.ready;

View File

@ -1306,6 +1306,8 @@ describe('OpenPGP.js public api tests', function() {
});
it('should encrypt and decrypt/verify with detached signature as input and detached flag not set for encryption', async function () {
const plaintext = " \t┍ͤ޵၂༫዇◧˘˻ᙑ᎚⏴ំந⛑nٓኵΉⅶ⋋ŵ⋲΂ͽᣏ₅ᄶɼ┋⌔û᬴Ƚᔡᧅ≃ṱἆ⃷݂૿ӌ᰹෇ٹჵ⛇໶⛌ \t\n한국어/조선말";
const privKeyDE = (await openpgp.key.readArmored(priv_key_de)).keys[0];
await privKeyDE.decrypt(passphrase);