mirror of
https://github.com/signalapp/Signal-Android.git
synced 2025-12-23 04:28:35 +00:00
Don't assert on bad padding.
This commit is contained in:
@@ -328,7 +328,9 @@ public class SessionCipher {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private byte[] getPlaintext(int version, MessageKeys messageKeys, byte[] cipherText) {
|
private byte[] getPlaintext(int version, MessageKeys messageKeys, byte[] cipherText)
|
||||||
|
throws InvalidMessageException
|
||||||
|
{
|
||||||
try {
|
try {
|
||||||
Cipher cipher;
|
Cipher cipher;
|
||||||
|
|
||||||
@@ -340,7 +342,7 @@ public class SessionCipher {
|
|||||||
|
|
||||||
return cipher.doFinal(cipherText);
|
return cipher.doFinal(cipherText);
|
||||||
} catch (IllegalBlockSizeException | BadPaddingException e) {
|
} catch (IllegalBlockSizeException | BadPaddingException e) {
|
||||||
throw new AssertionError(e);
|
throw new InvalidMessageException(e);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user