kopia lustrzana https://github.com/ryukoposting/Signal-Android
Don't assert on bad padding.
rodzic
9dce376780
commit
c4209a65e3
|
@ -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);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Ładowanie…
Reference in New Issue