Update web stream tools and improve performance (#1439)

Optimize reading literal data packet from ArrayStreams, and update
web-stream-tools (with various performance improvements).
This commit is contained in:
Daniel Huigens 2021-11-17 21:34:04 +01:00 committed by GitHub
parent a17a7200b8
commit 1d2093ab0a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 6 deletions

6
package-lock.json generated
View File

@ -261,9 +261,9 @@
"dev": true
},
"@openpgp/web-stream-tools": {
"version": "0.0.6",
"resolved": "https://registry.npmjs.org/@openpgp/web-stream-tools/-/web-stream-tools-0.0.6.tgz",
"integrity": "sha512-U2Ujy4GUwz315W2QfleOWFnlvXTGz2Fjt4mg/nATedruT3EbIWjWzw4qfbaIvnBHjaVIijltsiESuNxIFRdHkw==",
"version": "0.0.8",
"resolved": "https://registry.npmjs.org/@openpgp/web-stream-tools/-/web-stream-tools-0.0.8.tgz",
"integrity": "sha512-THgyxuegf+NeRVdDfy51fZMPgtzolyKiQpeMnZu5s9L+JGBT1+Ek3Lmp4qOGJDO9HHCXPtxgr0vB5/4Zz0XhWw==",
"dev": true,
"requires": {
"@mattiasbuelens/web-streams-adapter": "~0.1.0",

View File

@ -59,7 +59,7 @@
"@openpgp/pako": "^1.0.12",
"@openpgp/seek-bzip": "^1.0.5-git",
"@openpgp/tweetnacl": "^1.0.3",
"@openpgp/web-stream-tools": "0.0.6",
"@openpgp/web-stream-tools": "0.0.8",
"@rollup/plugin-commonjs": "^11.1.0",
"@rollup/plugin-node-resolve": "^7.1.3",
"@rollup/plugin-replace": "^2.3.2",

View File

@ -130,8 +130,8 @@ class LiteralDataPacket {
this.date = util.readDate(await reader.readBytes(4));
const data = reader.remainder();
let data = reader.remainder();
if (stream.isArrayStream(data)) data = await stream.readToEnd(data);
this.setBytes(data, format);
});
}