Merge pull request #2400 from mcginty/mms-bad-base64-fix

Fix NPE when encrypted MMS has bad base64 encoding
pull/1/head
Moxie Marlinspike 10 years ago
commit 5836f35291

@ -61,6 +61,10 @@ public class MmsCipher {
byte[] decodedCiphertext = textTransport.getDecodedMessage(ciphertext.get());
byte[] plaintext;
if (decodedCiphertext == null) {
throw new InvalidMessageException("failed to decode ciphertext");
}
try {
plaintext = sessionCipher.decrypt(new WhisperMessage(decodedCiphertext));
} catch (InvalidMessageException e) {

Loading…
Cancel
Save