mirror of
https://github.com/oxen-io/session-android.git
synced 2025-12-03 10:22:20 +00:00
be safer when processing parts in AttachmentDownloadJob
Closes #4166 // FREEBIE
This commit is contained in:
committed by
Moxie Marlinspike
parent
c6abb7dc64
commit
cdf982a356
@@ -0,0 +1,24 @@
|
||||
package org.thoughtcrime.securesms.crypto;
|
||||
|
||||
import org.junit.Before;
|
||||
import org.junit.Test;
|
||||
import org.powermock.core.classloader.annotations.PowerMockIgnore;
|
||||
import org.thoughtcrime.securesms.BaseUnitTest;
|
||||
import org.whispersystems.libaxolotl.InvalidMessageException;
|
||||
|
||||
@PowerMockIgnore("javax.crypto.*")
|
||||
public class MasterCipherTest extends BaseUnitTest {
|
||||
private MasterCipher masterCipher;
|
||||
|
||||
@Before
|
||||
@Override
|
||||
public void setUp() throws Exception {
|
||||
super.setUp();
|
||||
masterCipher = new MasterCipher(masterSecret);
|
||||
}
|
||||
|
||||
@Test(expected = InvalidMessageException.class)
|
||||
public void testEncryptBytesWithZeroBody() throws Exception {
|
||||
masterCipher.decryptBytes(new byte[]{});
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user