Fix stream-reading zero-length (partial) packets
This commit is contained in:
parent
6fdfb2cd9d
commit
8c7e4386af
|
@ -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;
|
||||
|
|
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user