mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-27 20:15:21 +00:00
Update tests for new API.
This commit is contained in:
parent
b3cece27d6
commit
4caebdcd06
@ -8,6 +8,7 @@ import org.whispersystems.libaxolotl.InvalidKeyIdException;
|
|||||||
import org.whispersystems.libaxolotl.InvalidMessageException;
|
import org.whispersystems.libaxolotl.InvalidMessageException;
|
||||||
import org.whispersystems.libaxolotl.InvalidVersionException;
|
import org.whispersystems.libaxolotl.InvalidVersionException;
|
||||||
import org.whispersystems.libaxolotl.LegacyMessageException;
|
import org.whispersystems.libaxolotl.LegacyMessageException;
|
||||||
|
import org.whispersystems.libaxolotl.NoSessionException;
|
||||||
import org.whispersystems.libaxolotl.SessionBuilder;
|
import org.whispersystems.libaxolotl.SessionBuilder;
|
||||||
import org.whispersystems.libaxolotl.SessionCipher;
|
import org.whispersystems.libaxolotl.SessionCipher;
|
||||||
import org.whispersystems.libaxolotl.StaleKeyExchangeException;
|
import org.whispersystems.libaxolotl.StaleKeyExchangeException;
|
||||||
@ -17,6 +18,7 @@ import org.whispersystems.libaxolotl.ecc.ECKeyPair;
|
|||||||
import org.whispersystems.libaxolotl.protocol.CiphertextMessage;
|
import org.whispersystems.libaxolotl.protocol.CiphertextMessage;
|
||||||
import org.whispersystems.libaxolotl.protocol.KeyExchangeMessage;
|
import org.whispersystems.libaxolotl.protocol.KeyExchangeMessage;
|
||||||
import org.whispersystems.libaxolotl.protocol.PreKeyWhisperMessage;
|
import org.whispersystems.libaxolotl.protocol.PreKeyWhisperMessage;
|
||||||
|
import org.whispersystems.libaxolotl.protocol.WhisperMessage;
|
||||||
import org.whispersystems.libaxolotl.state.SignedPreKeyRecord;
|
import org.whispersystems.libaxolotl.state.SignedPreKeyRecord;
|
||||||
import org.whispersystems.libaxolotl.state.SignedPreKeyStore;
|
import org.whispersystems.libaxolotl.state.SignedPreKeyStore;
|
||||||
import org.whispersystems.libaxolotl.state.IdentityKeyStore;
|
import org.whispersystems.libaxolotl.state.IdentityKeyStore;
|
||||||
@ -35,7 +37,7 @@ public class SessionBuilderTest extends AndroidTestCase {
|
|||||||
private static final long BOB_RECIPIENT_ID = 2L;
|
private static final long BOB_RECIPIENT_ID = 2L;
|
||||||
|
|
||||||
public void testBasicPreKeyV2()
|
public void testBasicPreKeyV2()
|
||||||
throws InvalidKeyException, InvalidVersionException, InvalidMessageException, InvalidKeyIdException, DuplicateMessageException, LegacyMessageException, UntrustedIdentityException {
|
throws InvalidKeyException, InvalidVersionException, InvalidMessageException, InvalidKeyIdException, DuplicateMessageException, LegacyMessageException, UntrustedIdentityException, NoSessionException {
|
||||||
SessionStore aliceSessionStore = new InMemorySessionStore();
|
SessionStore aliceSessionStore = new InMemorySessionStore();
|
||||||
SignedPreKeyStore aliceSignedPreKeyStore = new InMemorySignedPreKeyStore();
|
SignedPreKeyStore aliceSignedPreKeyStore = new InMemorySignedPreKeyStore();
|
||||||
PreKeyStore alicePreKeyStore = new InMemoryPreKeyStore();
|
PreKeyStore alicePreKeyStore = new InMemoryPreKeyStore();
|
||||||
@ -49,10 +51,6 @@ public class SessionBuilderTest extends AndroidTestCase {
|
|||||||
PreKeyStore bobPreKeyStore = new InMemoryPreKeyStore();
|
PreKeyStore bobPreKeyStore = new InMemoryPreKeyStore();
|
||||||
SignedPreKeyStore bobSignedPreKeyStore = new InMemorySignedPreKeyStore();
|
SignedPreKeyStore bobSignedPreKeyStore = new InMemorySignedPreKeyStore();
|
||||||
IdentityKeyStore bobIdentityKeyStore = new InMemoryIdentityKeyStore();
|
IdentityKeyStore bobIdentityKeyStore = new InMemoryIdentityKeyStore();
|
||||||
SessionBuilder bobSessionBuilder = new SessionBuilder(bobSessionStore, bobPreKeyStore,
|
|
||||||
bobSignedPreKeyStore,
|
|
||||||
bobIdentityKeyStore,
|
|
||||||
ALICE_RECIPIENT_ID, 1);
|
|
||||||
|
|
||||||
ECKeyPair bobPreKeyPair = Curve.generateKeyPair(true);
|
ECKeyPair bobPreKeyPair = Curve.generateKeyPair(true);
|
||||||
PreKeyBundle bobPreKey = new PreKeyBundle(bobIdentityKeyStore.getLocalRegistrationId(), 1,
|
PreKeyBundle bobPreKey = new PreKeyBundle(bobIdentityKeyStore.getLocalRegistrationId(), 1,
|
||||||
@ -67,30 +65,29 @@ public class SessionBuilderTest extends AndroidTestCase {
|
|||||||
assertTrue(aliceSessionStore.loadSession(BOB_RECIPIENT_ID, 1).getSessionState().getSessionVersion() == 2);
|
assertTrue(aliceSessionStore.loadSession(BOB_RECIPIENT_ID, 1).getSessionState().getSessionVersion() == 2);
|
||||||
|
|
||||||
String originalMessage = "L'homme est condamné à être libre";
|
String originalMessage = "L'homme est condamné à être libre";
|
||||||
SessionCipher aliceSessionCipher = new SessionCipher(aliceSessionStore, BOB_RECIPIENT_ID, 1);
|
SessionCipher aliceSessionCipher = new SessionCipher(aliceSessionStore, alicePreKeyStore, aliceSignedPreKeyStore, aliceIdentityKeyStore, BOB_RECIPIENT_ID, 1);
|
||||||
CiphertextMessage outgoingMessage = aliceSessionCipher.encrypt(originalMessage.getBytes());
|
CiphertextMessage outgoingMessage = aliceSessionCipher.encrypt(originalMessage.getBytes());
|
||||||
|
|
||||||
assertTrue(outgoingMessage.getType() == CiphertextMessage.PREKEY_TYPE);
|
assertTrue(outgoingMessage.getType() == CiphertextMessage.PREKEY_TYPE);
|
||||||
|
|
||||||
PreKeyWhisperMessage incomingMessage = new PreKeyWhisperMessage(outgoingMessage.serialize());
|
PreKeyWhisperMessage incomingMessage = new PreKeyWhisperMessage(outgoingMessage.serialize());
|
||||||
bobPreKeyStore.storePreKey(31337, new PreKeyRecord(bobPreKey.getPreKeyId(), bobPreKeyPair));
|
bobPreKeyStore.storePreKey(31337, new PreKeyRecord(bobPreKey.getPreKeyId(), bobPreKeyPair));
|
||||||
bobSessionBuilder.process(incomingMessage);
|
|
||||||
|
SessionCipher bobSessionCipher = new SessionCipher(bobSessionStore, bobPreKeyStore, bobSignedPreKeyStore, bobIdentityKeyStore, ALICE_RECIPIENT_ID, 1);
|
||||||
|
byte[] plaintext = bobSessionCipher.decrypt(incomingMessage);
|
||||||
|
|
||||||
assertTrue(bobSessionStore.containsSession(ALICE_RECIPIENT_ID, 1));
|
assertTrue(bobSessionStore.containsSession(ALICE_RECIPIENT_ID, 1));
|
||||||
assertTrue(bobSessionStore.loadSession(ALICE_RECIPIENT_ID, 1).getSessionState().getSessionVersion() == 2);
|
assertTrue(bobSessionStore.loadSession(ALICE_RECIPIENT_ID, 1).getSessionState().getSessionVersion() == 2);
|
||||||
|
|
||||||
SessionCipher bobSessionCipher = new SessionCipher(bobSessionStore, ALICE_RECIPIENT_ID, 1);
|
|
||||||
byte[] plaintext = bobSessionCipher.decrypt(incomingMessage.getWhisperMessage().serialize());
|
|
||||||
|
|
||||||
assertTrue(originalMessage.equals(new String(plaintext)));
|
assertTrue(originalMessage.equals(new String(plaintext)));
|
||||||
|
|
||||||
CiphertextMessage bobOutgoingMessage = bobSessionCipher.encrypt(originalMessage.getBytes());
|
CiphertextMessage bobOutgoingMessage = bobSessionCipher.encrypt(originalMessage.getBytes());
|
||||||
assertTrue(bobOutgoingMessage.getType() == CiphertextMessage.WHISPER_TYPE);
|
assertTrue(bobOutgoingMessage.getType() == CiphertextMessage.WHISPER_TYPE);
|
||||||
|
|
||||||
byte[] alicePlaintext = aliceSessionCipher.decrypt(bobOutgoingMessage.serialize());
|
byte[] alicePlaintext = aliceSessionCipher.decrypt((WhisperMessage)bobOutgoingMessage);
|
||||||
assertTrue(new String(alicePlaintext).equals(originalMessage));
|
assertTrue(new String(alicePlaintext).equals(originalMessage));
|
||||||
|
|
||||||
runInteraction(aliceSessionStore, bobSessionStore);
|
runInteraction(aliceSessionStore, alicePreKeyStore, aliceSignedPreKeyStore, aliceIdentityKeyStore,
|
||||||
|
bobSessionStore, bobPreKeyStore, bobSignedPreKeyStore, bobIdentityKeyStore);
|
||||||
|
|
||||||
aliceSessionStore = new InMemorySessionStore();
|
aliceSessionStore = new InMemorySessionStore();
|
||||||
aliceIdentityKeyStore = new InMemoryIdentityKeyStore();
|
aliceIdentityKeyStore = new InMemoryIdentityKeyStore();
|
||||||
@ -98,7 +95,7 @@ public class SessionBuilderTest extends AndroidTestCase {
|
|||||||
aliceSignedPreKeyStore,
|
aliceSignedPreKeyStore,
|
||||||
aliceIdentityKeyStore,
|
aliceIdentityKeyStore,
|
||||||
BOB_RECIPIENT_ID, 1);
|
BOB_RECIPIENT_ID, 1);
|
||||||
aliceSessionCipher = new SessionCipher(aliceSessionStore, BOB_RECIPIENT_ID, 1);
|
aliceSessionCipher = new SessionCipher(aliceSessionStore, alicePreKeyStore, aliceSignedPreKeyStore, aliceIdentityKeyStore, BOB_RECIPIENT_ID, 1);
|
||||||
|
|
||||||
bobPreKeyPair = Curve.generateKeyPair(true);
|
bobPreKeyPair = Curve.generateKeyPair(true);
|
||||||
bobPreKey = new PreKeyBundle(bobIdentityKeyStore.getLocalRegistrationId(),
|
bobPreKey = new PreKeyBundle(bobIdentityKeyStore.getLocalRegistrationId(),
|
||||||
@ -111,14 +108,14 @@ public class SessionBuilderTest extends AndroidTestCase {
|
|||||||
outgoingMessage = aliceSessionCipher.encrypt(originalMessage.getBytes());
|
outgoingMessage = aliceSessionCipher.encrypt(originalMessage.getBytes());
|
||||||
|
|
||||||
try {
|
try {
|
||||||
bobSessionBuilder.process(new PreKeyWhisperMessage(outgoingMessage.serialize()));
|
bobSessionCipher.decrypt(new PreKeyWhisperMessage(outgoingMessage.serialize()));
|
||||||
throw new AssertionError("shouldn't be trusted!");
|
throw new AssertionError("shouldn't be trusted!");
|
||||||
} catch (UntrustedIdentityException uie) {
|
} catch (UntrustedIdentityException uie) {
|
||||||
bobIdentityKeyStore.saveIdentity(ALICE_RECIPIENT_ID, new PreKeyWhisperMessage(outgoingMessage.serialize()).getIdentityKey());
|
bobIdentityKeyStore.saveIdentity(ALICE_RECIPIENT_ID, new PreKeyWhisperMessage(outgoingMessage.serialize()).getIdentityKey());
|
||||||
bobSessionBuilder.process(new PreKeyWhisperMessage(outgoingMessage.serialize()));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
plaintext = bobSessionCipher.decrypt(new PreKeyWhisperMessage(outgoingMessage.serialize()).getWhisperMessage().serialize());
|
plaintext = bobSessionCipher.decrypt(new PreKeyWhisperMessage(outgoingMessage.serialize()));
|
||||||
|
|
||||||
assertTrue(new String(plaintext).equals(originalMessage));
|
assertTrue(new String(plaintext).equals(originalMessage));
|
||||||
|
|
||||||
bobPreKey = new PreKeyBundle(bobIdentityKeyStore.getLocalRegistrationId(), 1,
|
bobPreKey = new PreKeyBundle(bobIdentityKeyStore.getLocalRegistrationId(), 1,
|
||||||
@ -135,7 +132,7 @@ public class SessionBuilderTest extends AndroidTestCase {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public void testBasicPreKeyV3()
|
public void testBasicPreKeyV3()
|
||||||
throws InvalidKeyException, InvalidVersionException, InvalidMessageException, InvalidKeyIdException, DuplicateMessageException, LegacyMessageException, UntrustedIdentityException {
|
throws InvalidKeyException, InvalidVersionException, InvalidMessageException, InvalidKeyIdException, DuplicateMessageException, LegacyMessageException, UntrustedIdentityException, NoSessionException {
|
||||||
SessionStore aliceSessionStore = new InMemorySessionStore();
|
SessionStore aliceSessionStore = new InMemorySessionStore();
|
||||||
SignedPreKeyStore aliceSignedPreKeyStore = new InMemorySignedPreKeyStore();
|
SignedPreKeyStore aliceSignedPreKeyStore = new InMemorySignedPreKeyStore();
|
||||||
PreKeyStore alicePreKeyStore = new InMemoryPreKeyStore();
|
PreKeyStore alicePreKeyStore = new InMemoryPreKeyStore();
|
||||||
@ -149,10 +146,6 @@ public class SessionBuilderTest extends AndroidTestCase {
|
|||||||
PreKeyStore bobPreKeyStore = new InMemoryPreKeyStore();
|
PreKeyStore bobPreKeyStore = new InMemoryPreKeyStore();
|
||||||
SignedPreKeyStore bobSignedPreKeyStore = new InMemorySignedPreKeyStore();
|
SignedPreKeyStore bobSignedPreKeyStore = new InMemorySignedPreKeyStore();
|
||||||
IdentityKeyStore bobIdentityKeyStore = new InMemoryIdentityKeyStore();
|
IdentityKeyStore bobIdentityKeyStore = new InMemoryIdentityKeyStore();
|
||||||
SessionBuilder bobSessionBuilder = new SessionBuilder(bobSessionStore, bobPreKeyStore,
|
|
||||||
bobSignedPreKeyStore,
|
|
||||||
bobIdentityKeyStore,
|
|
||||||
ALICE_RECIPIENT_ID, 1);
|
|
||||||
|
|
||||||
ECKeyPair bobPreKeyPair = Curve.generateKeyPair(true);
|
ECKeyPair bobPreKeyPair = Curve.generateKeyPair(true);
|
||||||
ECKeyPair bobSignedPreKeyPair = Curve.generateKeyPair(true);
|
ECKeyPair bobSignedPreKeyPair = Curve.generateKeyPair(true);
|
||||||
@ -171,7 +164,7 @@ public class SessionBuilderTest extends AndroidTestCase {
|
|||||||
assertTrue(aliceSessionStore.loadSession(BOB_RECIPIENT_ID, 1).getSessionState().getSessionVersion() == 3);
|
assertTrue(aliceSessionStore.loadSession(BOB_RECIPIENT_ID, 1).getSessionState().getSessionVersion() == 3);
|
||||||
|
|
||||||
String originalMessage = "L'homme est condamné à être libre";
|
String originalMessage = "L'homme est condamné à être libre";
|
||||||
SessionCipher aliceSessionCipher = new SessionCipher(aliceSessionStore, BOB_RECIPIENT_ID, 1);
|
SessionCipher aliceSessionCipher = new SessionCipher(aliceSessionStore, alicePreKeyStore, aliceSignedPreKeyStore, aliceIdentityKeyStore, BOB_RECIPIENT_ID, 1);
|
||||||
CiphertextMessage outgoingMessage = aliceSessionCipher.encrypt(originalMessage.getBytes());
|
CiphertextMessage outgoingMessage = aliceSessionCipher.encrypt(originalMessage.getBytes());
|
||||||
|
|
||||||
assertTrue(outgoingMessage.getType() == CiphertextMessage.PREKEY_TYPE);
|
assertTrue(outgoingMessage.getType() == CiphertextMessage.PREKEY_TYPE);
|
||||||
@ -179,24 +172,24 @@ public class SessionBuilderTest extends AndroidTestCase {
|
|||||||
PreKeyWhisperMessage incomingMessage = new PreKeyWhisperMessage(outgoingMessage.serialize());
|
PreKeyWhisperMessage incomingMessage = new PreKeyWhisperMessage(outgoingMessage.serialize());
|
||||||
bobPreKeyStore.storePreKey(31337, new PreKeyRecord(bobPreKey.getPreKeyId(), bobPreKeyPair));
|
bobPreKeyStore.storePreKey(31337, new PreKeyRecord(bobPreKey.getPreKeyId(), bobPreKeyPair));
|
||||||
bobSignedPreKeyStore.storeSignedPreKey(22, new SignedPreKeyRecord(22, System.currentTimeMillis(), bobSignedPreKeyPair, bobSignedPreKeySignature));
|
bobSignedPreKeyStore.storeSignedPreKey(22, new SignedPreKeyRecord(22, System.currentTimeMillis(), bobSignedPreKeyPair, bobSignedPreKeySignature));
|
||||||
bobSessionBuilder.process(incomingMessage);
|
|
||||||
|
SessionCipher bobSessionCipher = new SessionCipher(bobSessionStore, bobPreKeyStore, bobSignedPreKeyStore, bobIdentityKeyStore, ALICE_RECIPIENT_ID, 1);
|
||||||
|
byte[] plaintext = bobSessionCipher.decrypt(incomingMessage);
|
||||||
|
|
||||||
|
|
||||||
assertTrue(bobSessionStore.containsSession(ALICE_RECIPIENT_ID, 1));
|
assertTrue(bobSessionStore.containsSession(ALICE_RECIPIENT_ID, 1));
|
||||||
assertTrue(bobSessionStore.loadSession(ALICE_RECIPIENT_ID, 1).getSessionState().getSessionVersion() == 3);
|
assertTrue(bobSessionStore.loadSession(ALICE_RECIPIENT_ID, 1).getSessionState().getSessionVersion() == 3);
|
||||||
assertTrue(bobSessionStore.loadSession(ALICE_RECIPIENT_ID, 1).getSessionState().getAliceBaseKey() != null);
|
assertTrue(bobSessionStore.loadSession(ALICE_RECIPIENT_ID, 1).getSessionState().getAliceBaseKey() != null);
|
||||||
|
|
||||||
SessionCipher bobSessionCipher = new SessionCipher(bobSessionStore, ALICE_RECIPIENT_ID, 1);
|
|
||||||
byte[] plaintext = bobSessionCipher.decrypt(incomingMessage.getWhisperMessage().serialize());
|
|
||||||
|
|
||||||
assertTrue(originalMessage.equals(new String(plaintext)));
|
assertTrue(originalMessage.equals(new String(plaintext)));
|
||||||
|
|
||||||
CiphertextMessage bobOutgoingMessage = bobSessionCipher.encrypt(originalMessage.getBytes());
|
CiphertextMessage bobOutgoingMessage = bobSessionCipher.encrypt(originalMessage.getBytes());
|
||||||
assertTrue(bobOutgoingMessage.getType() == CiphertextMessage.WHISPER_TYPE);
|
assertTrue(bobOutgoingMessage.getType() == CiphertextMessage.WHISPER_TYPE);
|
||||||
|
|
||||||
byte[] alicePlaintext = aliceSessionCipher.decrypt(bobOutgoingMessage.serialize());
|
byte[] alicePlaintext = aliceSessionCipher.decrypt(new WhisperMessage(bobOutgoingMessage.serialize()));
|
||||||
assertTrue(new String(alicePlaintext).equals(originalMessage));
|
assertTrue(new String(alicePlaintext).equals(originalMessage));
|
||||||
|
|
||||||
runInteraction(aliceSessionStore, bobSessionStore);
|
runInteraction(aliceSessionStore, alicePreKeyStore, aliceSignedPreKeyStore, aliceIdentityKeyStore,
|
||||||
|
bobSessionStore, bobPreKeyStore, bobSignedPreKeyStore, bobIdentityKeyStore);
|
||||||
|
|
||||||
aliceSessionStore = new InMemorySessionStore();
|
aliceSessionStore = new InMemorySessionStore();
|
||||||
aliceIdentityKeyStore = new InMemoryIdentityKeyStore();
|
aliceIdentityKeyStore = new InMemoryIdentityKeyStore();
|
||||||
@ -204,7 +197,7 @@ public class SessionBuilderTest extends AndroidTestCase {
|
|||||||
aliceSignedPreKeyStore,
|
aliceSignedPreKeyStore,
|
||||||
aliceIdentityKeyStore,
|
aliceIdentityKeyStore,
|
||||||
BOB_RECIPIENT_ID, 1);
|
BOB_RECIPIENT_ID, 1);
|
||||||
aliceSessionCipher = new SessionCipher(aliceSessionStore, BOB_RECIPIENT_ID, 1);
|
aliceSessionCipher = new SessionCipher(aliceSessionStore, alicePreKeyStore, aliceSignedPreKeyStore, aliceIdentityKeyStore, BOB_RECIPIENT_ID, 1);
|
||||||
|
|
||||||
bobPreKeyPair = Curve.generateKeyPair(true);
|
bobPreKeyPair = Curve.generateKeyPair(true);
|
||||||
bobSignedPreKeyPair = Curve.generateKeyPair(true);
|
bobSignedPreKeyPair = Curve.generateKeyPair(true);
|
||||||
@ -221,14 +214,13 @@ public class SessionBuilderTest extends AndroidTestCase {
|
|||||||
outgoingMessage = aliceSessionCipher.encrypt(originalMessage.getBytes());
|
outgoingMessage = aliceSessionCipher.encrypt(originalMessage.getBytes());
|
||||||
|
|
||||||
try {
|
try {
|
||||||
bobSessionBuilder.process(new PreKeyWhisperMessage(outgoingMessage.serialize()));
|
plaintext = bobSessionCipher.decrypt(new PreKeyWhisperMessage(outgoingMessage.serialize()));
|
||||||
throw new AssertionError("shouldn't be trusted!");
|
throw new AssertionError("shouldn't be trusted!");
|
||||||
} catch (UntrustedIdentityException uie) {
|
} catch (UntrustedIdentityException uie) {
|
||||||
bobIdentityKeyStore.saveIdentity(ALICE_RECIPIENT_ID, new PreKeyWhisperMessage(outgoingMessage.serialize()).getIdentityKey());
|
bobIdentityKeyStore.saveIdentity(ALICE_RECIPIENT_ID, new PreKeyWhisperMessage(outgoingMessage.serialize()).getIdentityKey());
|
||||||
bobSessionBuilder.process(new PreKeyWhisperMessage(outgoingMessage.serialize()));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
plaintext = bobSessionCipher.decrypt(new PreKeyWhisperMessage(outgoingMessage.serialize()).getWhisperMessage().serialize());
|
plaintext = bobSessionCipher.decrypt(new PreKeyWhisperMessage(outgoingMessage.serialize()));
|
||||||
assertTrue(new String(plaintext).equals(originalMessage));
|
assertTrue(new String(plaintext).equals(originalMessage));
|
||||||
|
|
||||||
bobPreKey = new PreKeyBundle(bobIdentityKeyStore.getLocalRegistrationId(), 1,
|
bobPreKey = new PreKeyBundle(bobIdentityKeyStore.getLocalRegistrationId(), 1,
|
||||||
@ -289,7 +281,7 @@ public class SessionBuilderTest extends AndroidTestCase {
|
|||||||
aliceSessionBuilder.process(bobPreKey);
|
aliceSessionBuilder.process(bobPreKey);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void testRepeatBundleMessageV2() throws InvalidKeyException, UntrustedIdentityException, InvalidVersionException, InvalidMessageException, InvalidKeyIdException, DuplicateMessageException, LegacyMessageException {
|
public void testRepeatBundleMessageV2() throws InvalidKeyException, UntrustedIdentityException, InvalidVersionException, InvalidMessageException, InvalidKeyIdException, DuplicateMessageException, LegacyMessageException, NoSessionException {
|
||||||
SessionStore aliceSessionStore = new InMemorySessionStore();
|
SessionStore aliceSessionStore = new InMemorySessionStore();
|
||||||
SignedPreKeyStore aliceSignedPreKeyStore = new InMemorySignedPreKeyStore();
|
SignedPreKeyStore aliceSignedPreKeyStore = new InMemorySignedPreKeyStore();
|
||||||
PreKeyStore alicePreKeyStore = new InMemoryPreKeyStore();
|
PreKeyStore alicePreKeyStore = new InMemoryPreKeyStore();
|
||||||
@ -303,10 +295,6 @@ public class SessionBuilderTest extends AndroidTestCase {
|
|||||||
PreKeyStore bobPreKeyStore = new InMemoryPreKeyStore();
|
PreKeyStore bobPreKeyStore = new InMemoryPreKeyStore();
|
||||||
SignedPreKeyStore bobSignedPreKeyStore = new InMemorySignedPreKeyStore();
|
SignedPreKeyStore bobSignedPreKeyStore = new InMemorySignedPreKeyStore();
|
||||||
IdentityKeyStore bobIdentityKeyStore = new InMemoryIdentityKeyStore();
|
IdentityKeyStore bobIdentityKeyStore = new InMemoryIdentityKeyStore();
|
||||||
SessionBuilder bobSessionBuilder = new SessionBuilder(bobSessionStore, bobPreKeyStore,
|
|
||||||
bobSignedPreKeyStore,
|
|
||||||
bobIdentityKeyStore,
|
|
||||||
ALICE_RECIPIENT_ID, 1);
|
|
||||||
|
|
||||||
ECKeyPair bobPreKeyPair = Curve.generateKeyPair(true);
|
ECKeyPair bobPreKeyPair = Curve.generateKeyPair(true);
|
||||||
ECKeyPair bobSignedPreKeyPair = Curve.generateKeyPair(true);
|
ECKeyPair bobSignedPreKeyPair = Curve.generateKeyPair(true);
|
||||||
@ -324,40 +312,38 @@ public class SessionBuilderTest extends AndroidTestCase {
|
|||||||
aliceSessionBuilder.process(bobPreKey);
|
aliceSessionBuilder.process(bobPreKey);
|
||||||
|
|
||||||
String originalMessage = "L'homme est condamné à être libre";
|
String originalMessage = "L'homme est condamné à être libre";
|
||||||
SessionCipher aliceSessionCipher = new SessionCipher(aliceSessionStore, BOB_RECIPIENT_ID, 1);
|
SessionCipher aliceSessionCipher = new SessionCipher(aliceSessionStore, alicePreKeyStore, aliceSignedPreKeyStore, aliceIdentityKeyStore, BOB_RECIPIENT_ID, 1);
|
||||||
CiphertextMessage outgoingMessageOne = aliceSessionCipher.encrypt(originalMessage.getBytes());
|
CiphertextMessage outgoingMessageOne = aliceSessionCipher.encrypt(originalMessage.getBytes());
|
||||||
CiphertextMessage outgoingMessageTwo = aliceSessionCipher.encrypt(originalMessage.getBytes());
|
CiphertextMessage outgoingMessageTwo = aliceSessionCipher.encrypt(originalMessage.getBytes());
|
||||||
|
|
||||||
assertTrue(outgoingMessageOne.getType() == CiphertextMessage.PREKEY_TYPE);
|
assertTrue(outgoingMessageOne.getType() == CiphertextMessage.PREKEY_TYPE);
|
||||||
|
|
||||||
PreKeyWhisperMessage incomingMessage = new PreKeyWhisperMessage(outgoingMessageOne.serialize());
|
PreKeyWhisperMessage incomingMessage = new PreKeyWhisperMessage(outgoingMessageOne.serialize());
|
||||||
bobSessionBuilder.process(incomingMessage);
|
|
||||||
|
|
||||||
SessionCipher bobSessionCipher = new SessionCipher(bobSessionStore, ALICE_RECIPIENT_ID, 1);
|
SessionCipher bobSessionCipher = new SessionCipher(bobSessionStore, bobPreKeyStore, bobSignedPreKeyStore, bobIdentityKeyStore, ALICE_RECIPIENT_ID, 1);
|
||||||
|
|
||||||
byte[] plaintext = bobSessionCipher.decrypt(incomingMessage.getWhisperMessage().serialize());
|
byte[] plaintext = bobSessionCipher.decrypt(incomingMessage);
|
||||||
assertTrue(originalMessage.equals(new String(plaintext)));
|
assertTrue(originalMessage.equals(new String(plaintext)));
|
||||||
|
|
||||||
CiphertextMessage bobOutgoingMessage = bobSessionCipher.encrypt(originalMessage.getBytes());
|
CiphertextMessage bobOutgoingMessage = bobSessionCipher.encrypt(originalMessage.getBytes());
|
||||||
|
|
||||||
byte[] alicePlaintext = aliceSessionCipher.decrypt(bobOutgoingMessage.serialize());
|
byte[] alicePlaintext = aliceSessionCipher.decrypt(new WhisperMessage(bobOutgoingMessage.serialize()));
|
||||||
assertTrue(originalMessage.equals(new String(alicePlaintext)));
|
assertTrue(originalMessage.equals(new String(alicePlaintext)));
|
||||||
|
|
||||||
// The test
|
// The test
|
||||||
|
|
||||||
PreKeyWhisperMessage incomingMessageTwo = new PreKeyWhisperMessage(outgoingMessageTwo.serialize());
|
PreKeyWhisperMessage incomingMessageTwo = new PreKeyWhisperMessage(outgoingMessageTwo.serialize());
|
||||||
bobSessionBuilder.process(incomingMessageTwo);
|
|
||||||
|
|
||||||
plaintext = bobSessionCipher.decrypt(incomingMessageTwo.getWhisperMessage().serialize());
|
plaintext = bobSessionCipher.decrypt(incomingMessageTwo);
|
||||||
assertTrue(originalMessage.equals(new String(plaintext)));
|
assertTrue(originalMessage.equals(new String(plaintext)));
|
||||||
|
|
||||||
bobOutgoingMessage = bobSessionCipher.encrypt(originalMessage.getBytes());
|
bobOutgoingMessage = bobSessionCipher.encrypt(originalMessage.getBytes());
|
||||||
alicePlaintext = aliceSessionCipher.decrypt(bobOutgoingMessage.serialize());
|
alicePlaintext = aliceSessionCipher.decrypt(new WhisperMessage(bobOutgoingMessage.serialize()));
|
||||||
assertTrue(originalMessage.equals(new String(alicePlaintext)));
|
assertTrue(originalMessage.equals(new String(alicePlaintext)));
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void testRepeatBundleMessageV3() throws InvalidKeyException, UntrustedIdentityException, InvalidVersionException, InvalidMessageException, InvalidKeyIdException, DuplicateMessageException, LegacyMessageException {
|
public void testRepeatBundleMessageV3() throws InvalidKeyException, UntrustedIdentityException, InvalidVersionException, InvalidMessageException, InvalidKeyIdException, DuplicateMessageException, LegacyMessageException, NoSessionException {
|
||||||
SessionStore aliceSessionStore = new InMemorySessionStore();
|
SessionStore aliceSessionStore = new InMemorySessionStore();
|
||||||
SignedPreKeyStore aliceSignedPreKeyStore = new InMemorySignedPreKeyStore();
|
SignedPreKeyStore aliceSignedPreKeyStore = new InMemorySignedPreKeyStore();
|
||||||
PreKeyStore alicePreKeyStore = new InMemoryPreKeyStore();
|
PreKeyStore alicePreKeyStore = new InMemoryPreKeyStore();
|
||||||
@ -371,10 +357,6 @@ public class SessionBuilderTest extends AndroidTestCase {
|
|||||||
PreKeyStore bobPreKeyStore = new InMemoryPreKeyStore();
|
PreKeyStore bobPreKeyStore = new InMemoryPreKeyStore();
|
||||||
SignedPreKeyStore bobSignedPreKeyStore = new InMemorySignedPreKeyStore();
|
SignedPreKeyStore bobSignedPreKeyStore = new InMemorySignedPreKeyStore();
|
||||||
IdentityKeyStore bobIdentityKeyStore = new InMemoryIdentityKeyStore();
|
IdentityKeyStore bobIdentityKeyStore = new InMemoryIdentityKeyStore();
|
||||||
SessionBuilder bobSessionBuilder = new SessionBuilder(bobSessionStore, bobPreKeyStore,
|
|
||||||
bobSignedPreKeyStore,
|
|
||||||
bobIdentityKeyStore,
|
|
||||||
ALICE_RECIPIENT_ID, 1);
|
|
||||||
|
|
||||||
ECKeyPair bobPreKeyPair = Curve.generateKeyPair(true);
|
ECKeyPair bobPreKeyPair = Curve.generateKeyPair(true);
|
||||||
ECKeyPair bobSignedPreKeyPair = Curve.generateKeyPair(true);
|
ECKeyPair bobSignedPreKeyPair = Curve.generateKeyPair(true);
|
||||||
@ -392,40 +374,38 @@ public class SessionBuilderTest extends AndroidTestCase {
|
|||||||
aliceSessionBuilder.process(bobPreKey);
|
aliceSessionBuilder.process(bobPreKey);
|
||||||
|
|
||||||
String originalMessage = "L'homme est condamné à être libre";
|
String originalMessage = "L'homme est condamné à être libre";
|
||||||
SessionCipher aliceSessionCipher = new SessionCipher(aliceSessionStore, BOB_RECIPIENT_ID, 1);
|
SessionCipher aliceSessionCipher = new SessionCipher(aliceSessionStore, alicePreKeyStore, aliceSignedPreKeyStore, aliceIdentityKeyStore, BOB_RECIPIENT_ID, 1);
|
||||||
CiphertextMessage outgoingMessageOne = aliceSessionCipher.encrypt(originalMessage.getBytes());
|
CiphertextMessage outgoingMessageOne = aliceSessionCipher.encrypt(originalMessage.getBytes());
|
||||||
CiphertextMessage outgoingMessageTwo = aliceSessionCipher.encrypt(originalMessage.getBytes());
|
CiphertextMessage outgoingMessageTwo = aliceSessionCipher.encrypt(originalMessage.getBytes());
|
||||||
|
|
||||||
assertTrue(outgoingMessageOne.getType() == CiphertextMessage.PREKEY_TYPE);
|
assertTrue(outgoingMessageOne.getType() == CiphertextMessage.PREKEY_TYPE);
|
||||||
|
|
||||||
PreKeyWhisperMessage incomingMessage = new PreKeyWhisperMessage(outgoingMessageOne.serialize());
|
PreKeyWhisperMessage incomingMessage = new PreKeyWhisperMessage(outgoingMessageOne.serialize());
|
||||||
bobSessionBuilder.process(incomingMessage);
|
|
||||||
|
|
||||||
SessionCipher bobSessionCipher = new SessionCipher(bobSessionStore, ALICE_RECIPIENT_ID, 1);
|
SessionCipher bobSessionCipher = new SessionCipher(bobSessionStore, bobPreKeyStore, bobSignedPreKeyStore, bobIdentityKeyStore, ALICE_RECIPIENT_ID, 1);
|
||||||
|
|
||||||
byte[] plaintext = bobSessionCipher.decrypt(incomingMessage.getWhisperMessage().serialize());
|
byte[] plaintext = bobSessionCipher.decrypt(incomingMessage);
|
||||||
assertTrue(originalMessage.equals(new String(plaintext)));
|
assertTrue(originalMessage.equals(new String(plaintext)));
|
||||||
|
|
||||||
CiphertextMessage bobOutgoingMessage = bobSessionCipher.encrypt(originalMessage.getBytes());
|
CiphertextMessage bobOutgoingMessage = bobSessionCipher.encrypt(originalMessage.getBytes());
|
||||||
|
|
||||||
byte[] alicePlaintext = aliceSessionCipher.decrypt(bobOutgoingMessage.serialize());
|
byte[] alicePlaintext = aliceSessionCipher.decrypt(new WhisperMessage(bobOutgoingMessage.serialize()));
|
||||||
assertTrue(originalMessage.equals(new String(alicePlaintext)));
|
assertTrue(originalMessage.equals(new String(alicePlaintext)));
|
||||||
|
|
||||||
// The test
|
// The test
|
||||||
|
|
||||||
PreKeyWhisperMessage incomingMessageTwo = new PreKeyWhisperMessage(outgoingMessageTwo.serialize());
|
PreKeyWhisperMessage incomingMessageTwo = new PreKeyWhisperMessage(outgoingMessageTwo.serialize());
|
||||||
bobSessionBuilder.process(incomingMessageTwo);
|
|
||||||
|
|
||||||
plaintext = bobSessionCipher.decrypt(incomingMessageTwo.getWhisperMessage().serialize());
|
plaintext = bobSessionCipher.decrypt(new PreKeyWhisperMessage(incomingMessageTwo.serialize()));
|
||||||
assertTrue(originalMessage.equals(new String(plaintext)));
|
assertTrue(originalMessage.equals(new String(plaintext)));
|
||||||
|
|
||||||
bobOutgoingMessage = bobSessionCipher.encrypt(originalMessage.getBytes());
|
bobOutgoingMessage = bobSessionCipher.encrypt(originalMessage.getBytes());
|
||||||
alicePlaintext = aliceSessionCipher.decrypt(bobOutgoingMessage.serialize());
|
alicePlaintext = aliceSessionCipher.decrypt(new WhisperMessage(bobOutgoingMessage.serialize()));
|
||||||
assertTrue(originalMessage.equals(new String(alicePlaintext)));
|
assertTrue(originalMessage.equals(new String(alicePlaintext)));
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void testBadVerificationTagV3() throws InvalidKeyException, UntrustedIdentityException, InvalidVersionException, InvalidMessageException, InvalidKeyIdException, DuplicateMessageException, LegacyMessageException {
|
public void testBadVerificationTagV3() throws InvalidKeyException, UntrustedIdentityException, InvalidVersionException, InvalidMessageException, InvalidKeyIdException, DuplicateMessageException, LegacyMessageException, NoSessionException {
|
||||||
SessionStore aliceSessionStore = new InMemorySessionStore();
|
SessionStore aliceSessionStore = new InMemorySessionStore();
|
||||||
SignedPreKeyStore aliceSignedPreKeyStore = new InMemorySignedPreKeyStore();
|
SignedPreKeyStore aliceSignedPreKeyStore = new InMemorySignedPreKeyStore();
|
||||||
PreKeyStore alicePreKeyStore = new InMemoryPreKeyStore();
|
PreKeyStore alicePreKeyStore = new InMemoryPreKeyStore();
|
||||||
@ -439,10 +419,7 @@ public class SessionBuilderTest extends AndroidTestCase {
|
|||||||
PreKeyStore bobPreKeyStore = new InMemoryPreKeyStore();
|
PreKeyStore bobPreKeyStore = new InMemoryPreKeyStore();
|
||||||
SignedPreKeyStore bobSignedPreKeyStore = new InMemorySignedPreKeyStore();
|
SignedPreKeyStore bobSignedPreKeyStore = new InMemorySignedPreKeyStore();
|
||||||
IdentityKeyStore bobIdentityKeyStore = new InMemoryIdentityKeyStore();
|
IdentityKeyStore bobIdentityKeyStore = new InMemoryIdentityKeyStore();
|
||||||
SessionBuilder bobSessionBuilder = new SessionBuilder(bobSessionStore, bobPreKeyStore,
|
|
||||||
bobSignedPreKeyStore,
|
|
||||||
bobIdentityKeyStore,
|
|
||||||
ALICE_RECIPIENT_ID, 1);
|
|
||||||
|
|
||||||
ECKeyPair bobPreKeyPair = Curve.generateKeyPair(true);
|
ECKeyPair bobPreKeyPair = Curve.generateKeyPair(true);
|
||||||
ECKeyPair bobSignedPreKeyPair = Curve.generateKeyPair(true);
|
ECKeyPair bobSignedPreKeyPair = Curve.generateKeyPair(true);
|
||||||
@ -460,13 +437,15 @@ public class SessionBuilderTest extends AndroidTestCase {
|
|||||||
aliceSessionBuilder.process(bobPreKey);
|
aliceSessionBuilder.process(bobPreKey);
|
||||||
|
|
||||||
String originalMessage = "L'homme est condamné à être libre";
|
String originalMessage = "L'homme est condamné à être libre";
|
||||||
SessionCipher aliceSessionCipher = new SessionCipher(aliceSessionStore, BOB_RECIPIENT_ID, 1);
|
SessionCipher aliceSessionCipher = new SessionCipher(aliceSessionStore, alicePreKeyStore, aliceSignedPreKeyStore, aliceIdentityKeyStore, BOB_RECIPIENT_ID, 1);
|
||||||
CiphertextMessage outgoingMessageOne = aliceSessionCipher.encrypt(originalMessage.getBytes());
|
CiphertextMessage outgoingMessageOne = aliceSessionCipher.encrypt(originalMessage.getBytes());
|
||||||
|
|
||||||
assertTrue(outgoingMessageOne.getType() == CiphertextMessage.PREKEY_TYPE);
|
assertTrue(outgoingMessageOne.getType() == CiphertextMessage.PREKEY_TYPE);
|
||||||
|
|
||||||
PreKeyWhisperMessage incomingMessage = new PreKeyWhisperMessage(outgoingMessageOne.serialize());
|
PreKeyWhisperMessage incomingMessage = new PreKeyWhisperMessage(outgoingMessageOne.serialize());
|
||||||
|
|
||||||
|
SessionCipher bobSessionCipher = new SessionCipher(bobSessionStore, bobPreKeyStore, bobSignedPreKeyStore, bobIdentityKeyStore, ALICE_RECIPIENT_ID, 1);
|
||||||
|
|
||||||
for (int i=0;i<incomingMessage.getVerification().length * 8;i++) {
|
for (int i=0;i<incomingMessage.getVerification().length * 8;i++) {
|
||||||
byte[] modifiedVerification = new byte[incomingMessage.getVerification().length];
|
byte[] modifiedVerification = new byte[incomingMessage.getVerification().length];
|
||||||
System.arraycopy(incomingMessage.getVerification(), 0, modifiedVerification, 0, modifiedVerification.length);
|
System.arraycopy(incomingMessage.getVerification(), 0, modifiedVerification, 0, modifiedVerification.length);
|
||||||
@ -482,7 +461,7 @@ public class SessionBuilderTest extends AndroidTestCase {
|
|||||||
incomingMessage.getWhisperMessage());
|
incomingMessage.getWhisperMessage());
|
||||||
|
|
||||||
try {
|
try {
|
||||||
bobSessionBuilder.process(modifiedMessage);
|
bobSessionCipher.decrypt(modifiedMessage);
|
||||||
throw new AssertionError("Modified verification tag passed!");
|
throw new AssertionError("Modified verification tag passed!");
|
||||||
} catch (InvalidKeyException e) {
|
} catch (InvalidKeyException e) {
|
||||||
// good
|
// good
|
||||||
@ -498,11 +477,11 @@ public class SessionBuilderTest extends AndroidTestCase {
|
|||||||
incomingMessage.getVerification(),
|
incomingMessage.getVerification(),
|
||||||
incomingMessage.getWhisperMessage());
|
incomingMessage.getWhisperMessage());
|
||||||
|
|
||||||
bobSessionBuilder.process(unmodifiedMessage);
|
bobSessionCipher.decrypt(unmodifiedMessage);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
public void testBasicKeyExchange() throws InvalidKeyException, LegacyMessageException, InvalidMessageException, DuplicateMessageException, UntrustedIdentityException, StaleKeyExchangeException, InvalidVersionException {
|
public void testBasicKeyExchange() throws InvalidKeyException, LegacyMessageException, InvalidMessageException, DuplicateMessageException, UntrustedIdentityException, StaleKeyExchangeException, InvalidVersionException, NoSessionException {
|
||||||
SessionStore aliceSessionStore = new InMemorySessionStore();
|
SessionStore aliceSessionStore = new InMemorySessionStore();
|
||||||
PreKeyStore alicePreKeyStore = new InMemoryPreKeyStore();
|
PreKeyStore alicePreKeyStore = new InMemoryPreKeyStore();
|
||||||
SignedPreKeyStore aliceSignedPreKeyStore = new InMemorySignedPreKeyStore();
|
SignedPreKeyStore aliceSignedPreKeyStore = new InMemorySignedPreKeyStore();
|
||||||
@ -536,7 +515,8 @@ public class SessionBuilderTest extends AndroidTestCase {
|
|||||||
assertTrue(aliceSessionStore.containsSession(BOB_RECIPIENT_ID, 1));
|
assertTrue(aliceSessionStore.containsSession(BOB_RECIPIENT_ID, 1));
|
||||||
assertTrue(bobSessionStore.containsSession(ALICE_RECIPIENT_ID, 1));
|
assertTrue(bobSessionStore.containsSession(ALICE_RECIPIENT_ID, 1));
|
||||||
|
|
||||||
runInteraction(aliceSessionStore, bobSessionStore);
|
runInteraction(aliceSessionStore, alicePreKeyStore, aliceSignedPreKeyStore, aliceIdentityKeyStore,
|
||||||
|
bobSessionStore, bobPreKeyStore, bobSignedPreKeyStore, bobIdentityKeyStore);
|
||||||
|
|
||||||
aliceSessionStore = new InMemorySessionStore();
|
aliceSessionStore = new InMemorySessionStore();
|
||||||
aliceIdentityKeyStore = new InMemoryIdentityKeyStore();
|
aliceIdentityKeyStore = new InMemoryIdentityKeyStore();
|
||||||
@ -555,11 +535,12 @@ public class SessionBuilderTest extends AndroidTestCase {
|
|||||||
|
|
||||||
assertTrue(aliceSessionBuilder.process(bobKeyExchangeMessage) == null);
|
assertTrue(aliceSessionBuilder.process(bobKeyExchangeMessage) == null);
|
||||||
|
|
||||||
runInteraction(aliceSessionStore, bobSessionStore);
|
runInteraction(aliceSessionStore, alicePreKeyStore, aliceSignedPreKeyStore, aliceIdentityKeyStore,
|
||||||
|
bobSessionStore, bobPreKeyStore, bobSignedPreKeyStore, bobIdentityKeyStore);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void testSimultaneousKeyExchange()
|
public void testSimultaneousKeyExchange()
|
||||||
throws InvalidKeyException, DuplicateMessageException, LegacyMessageException, InvalidMessageException, UntrustedIdentityException, StaleKeyExchangeException {
|
throws InvalidKeyException, DuplicateMessageException, LegacyMessageException, InvalidMessageException, UntrustedIdentityException, StaleKeyExchangeException, NoSessionException {
|
||||||
SessionStore aliceSessionStore = new InMemorySessionStore();
|
SessionStore aliceSessionStore = new InMemorySessionStore();
|
||||||
PreKeyStore alicePreKeyStore = new InMemoryPreKeyStore();
|
PreKeyStore alicePreKeyStore = new InMemoryPreKeyStore();
|
||||||
SignedPreKeyStore aliceSignedPreKeyStore = new InMemorySignedPreKeyStore();
|
SignedPreKeyStore aliceSignedPreKeyStore = new InMemorySignedPreKeyStore();
|
||||||
@ -596,28 +577,36 @@ public class SessionBuilderTest extends AndroidTestCase {
|
|||||||
assertTrue(aliceAck == null);
|
assertTrue(aliceAck == null);
|
||||||
assertTrue(bobAck == null);
|
assertTrue(bobAck == null);
|
||||||
|
|
||||||
runInteraction(aliceSessionStore, bobSessionStore);
|
runInteraction(aliceSessionStore, alicePreKeyStore, aliceSignedPreKeyStore, aliceIdentityKeyStore,
|
||||||
|
bobSessionStore, bobPreKeyStore, bobSignedPreKeyStore, bobIdentityKeyStore);
|
||||||
}
|
}
|
||||||
|
|
||||||
private void runInteraction(SessionStore aliceSessionStore, SessionStore bobSessionStore)
|
private void runInteraction(SessionStore aliceSessionStore,
|
||||||
throws DuplicateMessageException, LegacyMessageException, InvalidMessageException
|
PreKeyStore alicePreKeyStore,
|
||||||
|
SignedPreKeyStore aliceSignedPreKeyStore,
|
||||||
|
IdentityKeyStore aliceIdentityKeyStore,
|
||||||
|
SessionStore bobSessionStore,
|
||||||
|
PreKeyStore bobPreKeyStore,
|
||||||
|
SignedPreKeyStore bobSignedPreKeyStore,
|
||||||
|
IdentityKeyStore bobIdentityKeyStore)
|
||||||
|
throws DuplicateMessageException, LegacyMessageException, InvalidMessageException, NoSessionException
|
||||||
{
|
{
|
||||||
SessionCipher aliceSessionCipher = new SessionCipher(aliceSessionStore, BOB_RECIPIENT_ID, 1);
|
SessionCipher aliceSessionCipher = new SessionCipher(aliceSessionStore, alicePreKeyStore, aliceSignedPreKeyStore, aliceIdentityKeyStore, BOB_RECIPIENT_ID, 1);
|
||||||
SessionCipher bobSessionCipher = new SessionCipher(bobSessionStore, ALICE_RECIPIENT_ID, 1);
|
SessionCipher bobSessionCipher = new SessionCipher(bobSessionStore, bobPreKeyStore, bobSignedPreKeyStore, bobIdentityKeyStore, ALICE_RECIPIENT_ID, 1);
|
||||||
|
|
||||||
String originalMessage = "smert ze smert";
|
String originalMessage = "smert ze smert";
|
||||||
CiphertextMessage aliceMessage = aliceSessionCipher.encrypt(originalMessage.getBytes());
|
CiphertextMessage aliceMessage = aliceSessionCipher.encrypt(originalMessage.getBytes());
|
||||||
|
|
||||||
assertTrue(aliceMessage.getType() == CiphertextMessage.WHISPER_TYPE);
|
assertTrue(aliceMessage.getType() == CiphertextMessage.WHISPER_TYPE);
|
||||||
|
|
||||||
byte[] plaintext = bobSessionCipher.decrypt(aliceMessage.serialize());
|
byte[] plaintext = bobSessionCipher.decrypt(new WhisperMessage(aliceMessage.serialize()));
|
||||||
assertTrue(new String(plaintext).equals(originalMessage));
|
assertTrue(new String(plaintext).equals(originalMessage));
|
||||||
|
|
||||||
CiphertextMessage bobMessage = bobSessionCipher.encrypt(originalMessage.getBytes());
|
CiphertextMessage bobMessage = bobSessionCipher.encrypt(originalMessage.getBytes());
|
||||||
|
|
||||||
assertTrue(bobMessage.getType() == CiphertextMessage.WHISPER_TYPE);
|
assertTrue(bobMessage.getType() == CiphertextMessage.WHISPER_TYPE);
|
||||||
|
|
||||||
plaintext = aliceSessionCipher.decrypt(bobMessage.serialize());
|
plaintext = aliceSessionCipher.decrypt(new WhisperMessage(bobMessage.serialize()));
|
||||||
assertTrue(new String(plaintext).equals(originalMessage));
|
assertTrue(new String(plaintext).equals(originalMessage));
|
||||||
|
|
||||||
for (int i=0;i<10;i++) {
|
for (int i=0;i<10;i++) {
|
||||||
@ -626,7 +615,7 @@ public class SessionBuilderTest extends AndroidTestCase {
|
|||||||
"surges up in the world--and defines himself aftward. " + i);
|
"surges up in the world--and defines himself aftward. " + i);
|
||||||
CiphertextMessage aliceLoopingMessage = aliceSessionCipher.encrypt(loopingMessage.getBytes());
|
CiphertextMessage aliceLoopingMessage = aliceSessionCipher.encrypt(loopingMessage.getBytes());
|
||||||
|
|
||||||
byte[] loopingPlaintext = bobSessionCipher.decrypt(aliceLoopingMessage.serialize());
|
byte[] loopingPlaintext = bobSessionCipher.decrypt(new WhisperMessage(aliceLoopingMessage.serialize()));
|
||||||
assertTrue(new String(loopingPlaintext).equals(loopingMessage));
|
assertTrue(new String(loopingPlaintext).equals(loopingMessage));
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -636,7 +625,7 @@ public class SessionBuilderTest extends AndroidTestCase {
|
|||||||
"surges up in the world--and defines himself aftward. " + i);
|
"surges up in the world--and defines himself aftward. " + i);
|
||||||
CiphertextMessage bobLoopingMessage = bobSessionCipher.encrypt(loopingMessage.getBytes());
|
CiphertextMessage bobLoopingMessage = bobSessionCipher.encrypt(loopingMessage.getBytes());
|
||||||
|
|
||||||
byte[] loopingPlaintext = aliceSessionCipher.decrypt(bobLoopingMessage.serialize());
|
byte[] loopingPlaintext = aliceSessionCipher.decrypt(new WhisperMessage(bobLoopingMessage.serialize()));
|
||||||
assertTrue(new String(loopingPlaintext).equals(loopingMessage));
|
assertTrue(new String(loopingPlaintext).equals(loopingMessage));
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -657,7 +646,7 @@ public class SessionBuilderTest extends AndroidTestCase {
|
|||||||
"surges up in the world--and defines himself aftward. " + i);
|
"surges up in the world--and defines himself aftward. " + i);
|
||||||
CiphertextMessage aliceLoopingMessage = aliceSessionCipher.encrypt(loopingMessage.getBytes());
|
CiphertextMessage aliceLoopingMessage = aliceSessionCipher.encrypt(loopingMessage.getBytes());
|
||||||
|
|
||||||
byte[] loopingPlaintext = bobSessionCipher.decrypt(aliceLoopingMessage.serialize());
|
byte[] loopingPlaintext = bobSessionCipher.decrypt(new WhisperMessage(aliceLoopingMessage.serialize()));
|
||||||
assertTrue(new String(loopingPlaintext).equals(loopingMessage));
|
assertTrue(new String(loopingPlaintext).equals(loopingMessage));
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -665,12 +654,12 @@ public class SessionBuilderTest extends AndroidTestCase {
|
|||||||
String loopingMessage = ("You can only desire based on what you know: " + i);
|
String loopingMessage = ("You can only desire based on what you know: " + i);
|
||||||
CiphertextMessage bobLoopingMessage = bobSessionCipher.encrypt(loopingMessage.getBytes());
|
CiphertextMessage bobLoopingMessage = bobSessionCipher.encrypt(loopingMessage.getBytes());
|
||||||
|
|
||||||
byte[] loopingPlaintext = aliceSessionCipher.decrypt(bobLoopingMessage.serialize());
|
byte[] loopingPlaintext = aliceSessionCipher.decrypt(new WhisperMessage(bobLoopingMessage.serialize()));
|
||||||
assertTrue(new String(loopingPlaintext).equals(loopingMessage));
|
assertTrue(new String(loopingPlaintext).equals(loopingMessage));
|
||||||
}
|
}
|
||||||
|
|
||||||
for (Pair<String, CiphertextMessage> aliceOutOfOrderMessage : aliceOutOfOrderMessages) {
|
for (Pair<String, CiphertextMessage> aliceOutOfOrderMessage : aliceOutOfOrderMessages) {
|
||||||
byte[] outOfOrderPlaintext = bobSessionCipher.decrypt(aliceOutOfOrderMessage.second().serialize());
|
byte[] outOfOrderPlaintext = bobSessionCipher.decrypt(new WhisperMessage(aliceOutOfOrderMessage.second().serialize()));
|
||||||
assertTrue(new String(outOfOrderPlaintext).equals(aliceOutOfOrderMessage.first()));
|
assertTrue(new String(outOfOrderPlaintext).equals(aliceOutOfOrderMessage.first()));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -8,15 +8,20 @@ import org.whispersystems.libaxolotl.IdentityKeyPair;
|
|||||||
import org.whispersystems.libaxolotl.InvalidKeyException;
|
import org.whispersystems.libaxolotl.InvalidKeyException;
|
||||||
import org.whispersystems.libaxolotl.InvalidMessageException;
|
import org.whispersystems.libaxolotl.InvalidMessageException;
|
||||||
import org.whispersystems.libaxolotl.LegacyMessageException;
|
import org.whispersystems.libaxolotl.LegacyMessageException;
|
||||||
|
import org.whispersystems.libaxolotl.NoSessionException;
|
||||||
import org.whispersystems.libaxolotl.SessionCipher;
|
import org.whispersystems.libaxolotl.SessionCipher;
|
||||||
import org.whispersystems.libaxolotl.ecc.Curve;
|
import org.whispersystems.libaxolotl.ecc.Curve;
|
||||||
import org.whispersystems.libaxolotl.ecc.ECKeyPair;
|
import org.whispersystems.libaxolotl.ecc.ECKeyPair;
|
||||||
import org.whispersystems.libaxolotl.ecc.ECPublicKey;
|
import org.whispersystems.libaxolotl.ecc.ECPublicKey;
|
||||||
import org.whispersystems.libaxolotl.protocol.CiphertextMessage;
|
import org.whispersystems.libaxolotl.protocol.CiphertextMessage;
|
||||||
|
import org.whispersystems.libaxolotl.protocol.WhisperMessage;
|
||||||
import org.whispersystems.libaxolotl.ratchet.RatchetingSession;
|
import org.whispersystems.libaxolotl.ratchet.RatchetingSession;
|
||||||
|
import org.whispersystems.libaxolotl.state.IdentityKeyStore;
|
||||||
|
import org.whispersystems.libaxolotl.state.PreKeyStore;
|
||||||
import org.whispersystems.libaxolotl.state.SessionRecord;
|
import org.whispersystems.libaxolotl.state.SessionRecord;
|
||||||
import org.whispersystems.libaxolotl.state.SessionState;
|
import org.whispersystems.libaxolotl.state.SessionState;
|
||||||
import org.whispersystems.libaxolotl.state.SessionStore;
|
import org.whispersystems.libaxolotl.state.SessionStore;
|
||||||
|
import org.whispersystems.libaxolotl.state.SignedPreKeyStore;
|
||||||
import org.whispersystems.libaxolotl.util.guava.Optional;
|
import org.whispersystems.libaxolotl.util.guava.Optional;
|
||||||
|
|
||||||
import java.security.NoSuchAlgorithmException;
|
import java.security.NoSuchAlgorithmException;
|
||||||
@ -32,7 +37,7 @@ public class SessionCipherTest extends AndroidTestCase {
|
|||||||
|
|
||||||
public void testBasicSessionV2()
|
public void testBasicSessionV2()
|
||||||
throws InvalidKeyException, DuplicateMessageException,
|
throws InvalidKeyException, DuplicateMessageException,
|
||||||
LegacyMessageException, InvalidMessageException, NoSuchAlgorithmException
|
LegacyMessageException, InvalidMessageException, NoSuchAlgorithmException, NoSessionException
|
||||||
{
|
{
|
||||||
SessionRecord aliceSessionRecord = new SessionRecord();
|
SessionRecord aliceSessionRecord = new SessionRecord();
|
||||||
SessionRecord bobSessionRecord = new SessionRecord();
|
SessionRecord bobSessionRecord = new SessionRecord();
|
||||||
@ -43,7 +48,7 @@ public class SessionCipherTest extends AndroidTestCase {
|
|||||||
|
|
||||||
public void testBasicSessionV3()
|
public void testBasicSessionV3()
|
||||||
throws InvalidKeyException, DuplicateMessageException,
|
throws InvalidKeyException, DuplicateMessageException,
|
||||||
LegacyMessageException, InvalidMessageException, NoSuchAlgorithmException
|
LegacyMessageException, InvalidMessageException, NoSuchAlgorithmException, NoSessionException
|
||||||
{
|
{
|
||||||
SessionRecord aliceSessionRecord = new SessionRecord();
|
SessionRecord aliceSessionRecord = new SessionRecord();
|
||||||
SessionRecord bobSessionRecord = new SessionRecord();
|
SessionRecord bobSessionRecord = new SessionRecord();
|
||||||
@ -53,25 +58,31 @@ public class SessionCipherTest extends AndroidTestCase {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private void runInteraction(SessionRecord aliceSessionRecord, SessionRecord bobSessionRecord)
|
private void runInteraction(SessionRecord aliceSessionRecord, SessionRecord bobSessionRecord)
|
||||||
throws DuplicateMessageException, LegacyMessageException, InvalidMessageException, NoSuchAlgorithmException {
|
throws DuplicateMessageException, LegacyMessageException, InvalidMessageException, NoSuchAlgorithmException, NoSessionException {
|
||||||
SessionStore aliceSessionStore = new InMemorySessionStore();
|
SessionStore aliceSessionStore = new InMemorySessionStore();
|
||||||
|
PreKeyStore alicePreKeyStore = new InMemoryPreKeyStore();
|
||||||
|
SignedPreKeyStore aliceSignedPreKeyStore = new InMemorySignedPreKeyStore();
|
||||||
|
IdentityKeyStore aliceIdentityKeyStore = new InMemoryIdentityKeyStore();
|
||||||
SessionStore bobSessionStore = new InMemorySessionStore();
|
SessionStore bobSessionStore = new InMemorySessionStore();
|
||||||
|
PreKeyStore bobPreKeyStore = new InMemoryPreKeyStore();
|
||||||
|
SignedPreKeyStore bobSignedPreKeyStore = new InMemorySignedPreKeyStore();
|
||||||
|
IdentityKeyStore bobIdentityKeyStore = new InMemoryIdentityKeyStore();
|
||||||
|
|
||||||
aliceSessionStore.storeSession(2L, 1, aliceSessionRecord);
|
aliceSessionStore.storeSession(2L, 1, aliceSessionRecord);
|
||||||
bobSessionStore.storeSession(3L, 1, bobSessionRecord);
|
bobSessionStore.storeSession(3L, 1, bobSessionRecord);
|
||||||
|
|
||||||
SessionCipher aliceCipher = new SessionCipher(aliceSessionStore, 2L, 1);
|
SessionCipher aliceCipher = new SessionCipher(aliceSessionStore, alicePreKeyStore, aliceSignedPreKeyStore, aliceIdentityKeyStore, 2L, 1);
|
||||||
SessionCipher bobCipher = new SessionCipher(bobSessionStore, 3L, 1);
|
SessionCipher bobCipher = new SessionCipher(bobSessionStore, bobPreKeyStore, bobSignedPreKeyStore, bobIdentityKeyStore, 3L, 1);
|
||||||
|
|
||||||
byte[] alicePlaintext = "This is a plaintext message.".getBytes();
|
byte[] alicePlaintext = "This is a plaintext message.".getBytes();
|
||||||
CiphertextMessage message = aliceCipher.encrypt(alicePlaintext);
|
CiphertextMessage message = aliceCipher.encrypt(alicePlaintext);
|
||||||
byte[] bobPlaintext = bobCipher.decrypt(message.serialize());
|
byte[] bobPlaintext = bobCipher.decrypt(new WhisperMessage(message.serialize()));
|
||||||
|
|
||||||
assertTrue(Arrays.equals(alicePlaintext, bobPlaintext));
|
assertTrue(Arrays.equals(alicePlaintext, bobPlaintext));
|
||||||
|
|
||||||
byte[] bobReply = "This is a message from Bob.".getBytes();
|
byte[] bobReply = "This is a message from Bob.".getBytes();
|
||||||
CiphertextMessage reply = bobCipher.encrypt(bobReply);
|
CiphertextMessage reply = bobCipher.encrypt(bobReply);
|
||||||
byte[] receivedReply = aliceCipher.decrypt(reply.serialize());
|
byte[] receivedReply = aliceCipher.decrypt(new WhisperMessage(reply.serialize()));
|
||||||
|
|
||||||
assertTrue(Arrays.equals(bobReply, receivedReply));
|
assertTrue(Arrays.equals(bobReply, receivedReply));
|
||||||
|
|
||||||
@ -89,7 +100,7 @@ public class SessionCipherTest extends AndroidTestCase {
|
|||||||
Collections.shuffle(alicePlaintextMessages, new Random(seed));
|
Collections.shuffle(alicePlaintextMessages, new Random(seed));
|
||||||
|
|
||||||
for (int i=0;i<aliceCiphertextMessages.size() / 2;i++) {
|
for (int i=0;i<aliceCiphertextMessages.size() / 2;i++) {
|
||||||
byte[] receivedPlaintext = bobCipher.decrypt(aliceCiphertextMessages.get(i).serialize());
|
byte[] receivedPlaintext = bobCipher.decrypt(new WhisperMessage(aliceCiphertextMessages.get(i).serialize()));
|
||||||
assertTrue(Arrays.equals(receivedPlaintext, alicePlaintextMessages.get(i)));
|
assertTrue(Arrays.equals(receivedPlaintext, alicePlaintextMessages.get(i)));
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -107,17 +118,17 @@ public class SessionCipherTest extends AndroidTestCase {
|
|||||||
Collections.shuffle(bobPlaintextMessages, new Random(seed));
|
Collections.shuffle(bobPlaintextMessages, new Random(seed));
|
||||||
|
|
||||||
for (int i=0;i<bobCiphertextMessages.size() / 2;i++) {
|
for (int i=0;i<bobCiphertextMessages.size() / 2;i++) {
|
||||||
byte[] receivedPlaintext = aliceCipher.decrypt(bobCiphertextMessages.get(i).serialize());
|
byte[] receivedPlaintext = aliceCipher.decrypt(new WhisperMessage(bobCiphertextMessages.get(i).serialize()));
|
||||||
assertTrue(Arrays.equals(receivedPlaintext, bobPlaintextMessages.get(i)));
|
assertTrue(Arrays.equals(receivedPlaintext, bobPlaintextMessages.get(i)));
|
||||||
}
|
}
|
||||||
|
|
||||||
for (int i=aliceCiphertextMessages.size()/2;i<aliceCiphertextMessages.size();i++) {
|
for (int i=aliceCiphertextMessages.size()/2;i<aliceCiphertextMessages.size();i++) {
|
||||||
byte[] receivedPlaintext = bobCipher.decrypt(aliceCiphertextMessages.get(i).serialize());
|
byte[] receivedPlaintext = bobCipher.decrypt(new WhisperMessage(aliceCiphertextMessages.get(i).serialize()));
|
||||||
assertTrue(Arrays.equals(receivedPlaintext, alicePlaintextMessages.get(i)));
|
assertTrue(Arrays.equals(receivedPlaintext, alicePlaintextMessages.get(i)));
|
||||||
}
|
}
|
||||||
|
|
||||||
for (int i=bobCiphertextMessages.size() / 2;i<bobCiphertextMessages.size();i++) {
|
for (int i=bobCiphertextMessages.size() / 2;i<bobCiphertextMessages.size();i++) {
|
||||||
byte[] receivedPlaintext = aliceCipher.decrypt(bobCiphertextMessages.get(i).serialize());
|
byte[] receivedPlaintext = aliceCipher.decrypt(new WhisperMessage(bobCiphertextMessages.get(i).serialize()));
|
||||||
assertTrue(Arrays.equals(receivedPlaintext, bobPlaintextMessages.get(i)));
|
assertTrue(Arrays.equals(receivedPlaintext, bobPlaintextMessages.get(i)));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user