diff options
author | Daniel Gultsch <daniel@gultsch.de> | 2015-12-19 12:44:55 +0100 |
---|---|---|
committer | Daniel Gultsch <daniel@gultsch.de> | 2015-12-19 12:44:55 +0100 |
commit | 15c8cb8ac6de9b16d7ef4e405b4129b2377a42b8 (patch) | |
tree | 1d19861b1c6189949e5923c523986df5f89657a0 /src/main/java/eu | |
parent | e8bf5cada4dcbd65bbd7f51ebd7233dbfaad1881 (diff) |
add more debugging to certificate checks after new omemo session was established
Diffstat (limited to 'src/main/java/eu')
-rw-r--r-- | src/main/java/eu/siacs/conversations/crypto/axolotl/AxolotlService.java | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/main/java/eu/siacs/conversations/crypto/axolotl/AxolotlService.java b/src/main/java/eu/siacs/conversations/crypto/axolotl/AxolotlService.java index e22b05c0..9f964d03 100644 --- a/src/main/java/eu/siacs/conversations/crypto/axolotl/AxolotlService.java +++ b/src/main/java/eu/siacs/conversations/crypto/axolotl/AxolotlService.java @@ -580,6 +580,7 @@ public class AxolotlService implements OnAdvancedStreamFeaturesLoaded { } private void verifySessionWithPEP(final XmppAxolotlSession session, final IdentityKey identityKey) { + Log.d(Config.LOGTAG,"trying to verify fresh session ("+session.getRemoteAddress().getName()+") with pep"); final AxolotlAddress address = session.getRemoteAddress(); try { IqPacket packet = mXmppConnectionService.getIqGenerator().retrieveVerificationForDevice(Jid.fromString(address.getName()), address.getDeviceId()); @@ -607,6 +608,8 @@ public class AxolotlService implements OnAdvancedStreamFeaturesLoaded { } catch (Exception e) { Log.d(Config.LOGTAG, "error during verification " + e.getMessage()); } + } else { + Log.d(Config.LOGTAG,"no verification found"); } fetchStatusMap.put(address, FetchStatus.SUCCESS); finishBuildingSessionsFromPEP(address); @@ -944,6 +947,7 @@ public class AxolotlService implements OnAdvancedStreamFeaturesLoaded { } private void putFreshSession(XmppAxolotlSession session) { + Log.d(Config.LOGTAG,"put fresh session"); sessions.put(session); if (Config.X509_VERIFICATION) { IdentityKey identityKey = axolotlStore.loadSession(session.getRemoteAddress()).getSessionState().getRemoteIdentityKey(); |