Fix armor error handling (#1541)
Fix unhandled promise rejections when parsing armor with malformed footers.
This commit is contained in:
parent
449ec3a367
commit
e69d8b24fc
6
package-lock.json
generated
6
package-lock.json
generated
|
@ -267,9 +267,9 @@
|
|||
"dev": true
|
||||
},
|
||||
"@openpgp/web-stream-tools": {
|
||||
"version": "0.0.10",
|
||||
"resolved": "https://registry.npmjs.org/@openpgp/web-stream-tools/-/web-stream-tools-0.0.10.tgz",
|
||||
"integrity": "sha512-1ONZADML0fb0RJR5UiGYPnRf9VaYBYUBc1gF9jyq57sHkr58cp5/BQHS+ivrqbRw21Sb70FKTssmJbRe71V+kw==",
|
||||
"version": "0.0.11",
|
||||
"resolved": "https://registry.npmjs.org/@openpgp/web-stream-tools/-/web-stream-tools-0.0.11.tgz",
|
||||
"integrity": "sha512-52NMPRmlXIVajd5dhpDNsG7WJRCdlcS1wXY03OGH1rxm7p6i3QzJvTVyKEAcW0T9KojvLKakV2uTICceELqSMw==",
|
||||
"dev": true,
|
||||
"requires": {
|
||||
"@mattiasbuelens/web-streams-adapter": "~0.1.0",
|
||||
|
|
|
@ -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.10",
|
||||
"@openpgp/web-stream-tools": "^0.0.11",
|
||||
"@rollup/plugin-commonjs": "^11.1.0",
|
||||
"@rollup/plugin-node-resolve": "^7.1.3",
|
||||
"@rollup/plugin-replace": "^2.3.2",
|
||||
|
|
|
@ -119,6 +119,17 @@ module.exports = () => describe('ASCII armor', function() {
|
|||
}));
|
||||
});
|
||||
|
||||
it('Exception if improperly formatted armor footer', async function () {
|
||||
await expect(openpgp.readCleartextMessage({ cleartextMessage: [
|
||||
'-----BEGIN PGP SIGNED MESSAGE-----',
|
||||
'Hash: SHA256',
|
||||
'',
|
||||
'-----BEGIN PGP SIGNATURE-----',
|
||||
'',
|
||||
'-----OOPS'
|
||||
].join('\n') })).to.be.rejectedWith(Error, /Misformed armored text/);
|
||||
});
|
||||
|
||||
it('Ignore unknown armor header - signature section', async function () {
|
||||
const validHeaders = ['Version: BCPG C# v1.7.4114.6375', 'Independent Reserve Pty. Ltd. 2017: 1.0.0.0'];
|
||||
expect(await openpgp.readCleartextMessage({ cleartextMessage: getArmor(['Hash: SHA1'], validHeaders) })).to.be.an.instanceof(openpgp.CleartextMessage);
|
||||
|
|
Loading…
Reference in New Issue
Block a user