Merge pull request #10 from sachaaaaa/ignore_failed_decryption_messages

Ignore friend request messages that couldn't be decrypted
pull/9/merge
sachaaaaa 7 years ago committed by GitHub
commit 377ee009c4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -7,6 +7,7 @@
const IV_LENGTH = 16;
FallBackSessionCipher = function (address) {
this.identityKeyString = address.getName();
this.pubKey = StringView.hexToArrayBuffer(address.getName());
this.encrypt = async (plaintext) => {
@ -37,11 +38,15 @@
const myKeyPair = await textsecure.storage.protocol.getIdentityKeyPair();
const myPrivateKey = myKeyPair.privKey;
const symmetricKey = libsignal.Curve.calculateAgreement(this.pubKey, myPrivateKey);
const plaintext = await libsignal.crypto.decrypt(symmetricKey, cipherText, iv);
return plaintext;
try {
return await libsignal.crypto.decrypt(symmetricKey, cipherText, iv);
} catch(e) {
throw new FallBackDecryptionError('Could not decrypt message from ' + this.identityKeyString + ' using FallBack encryption.')
}
}
}
window.libloki.FallBackSessionCipher = FallBackSessionCipher;
window.libloki.FallBackDecryptionError = FallBackDecryptionError;
})();

@ -694,6 +694,9 @@ MessageReceiver.prototype.extend({
buffer.toArrayBuffer(),
error.identityKey
);
} else {
// re-throw
throw error;
}
const ev = new Event('error');
ev.error = errorToThrow;
@ -820,7 +823,11 @@ MessageReceiver.prototype.extend({
handleContentMessage(envelope) {
return this.decrypt(envelope, envelope.content).then(plaintext =>
this.innerHandleContentMessage(envelope, plaintext)
);
).catch(e => {
if (e instanceof libloki.FallBackDecryptionError) {
console.log(e.message + ' Ignoring message.');
}
});
},
innerHandleContentMessage(envelope, plaintext) {
const content = textsecure.protobuf.Content.decode(plaintext);

Loading…
Cancel
Save