/** * Copyright (C) 2011 Whisper Systems * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ package org.thoughtcrime.securesms; import android.app.AlertDialog; import android.content.DialogInterface; import android.content.Intent; import android.os.Bundle; import android.widget.TextView; import android.widget.Toast; import org.thoughtcrime.securesms.crypto.IdentityKey; import org.thoughtcrime.securesms.crypto.IdentityKeyUtil; import org.thoughtcrime.securesms.crypto.MasterSecret; import org.thoughtcrime.securesms.database.SessionRecord; import org.thoughtcrime.securesms.recipients.Recipient; import org.thoughtcrime.securesms.util.MemoryCleaner; /** * Activity for verifying identity keys. * * @author Moxie Marlinspike */ public class VerifyIdentityActivity extends KeyVerifyingActivity { private Recipient recipient; private MasterSecret masterSecret; private TextView localIdentityFingerprint; private TextView remoteIdentityFingerprint; @Override public void onCreate(Bundle state) { super.onCreate(state); setContentView(R.layout.verify_identity_activity); initializeResources(); initializeFingerprints(); } @Override protected void onDestroy() { MemoryCleaner.clean(masterSecret); super.onDestroy(); } @Override protected void handleVerified() { AlertDialog.Builder builder = new AlertDialog.Builder(this); builder.setIcon(android.R.drawable.ic_dialog_alert); builder.setTitle("Mark Identity Verified?"); builder.setMessage("Are you sure you have validated the recipients' identity fingerprint " + "and would like to mark it as verified?"); builder.setPositiveButton("Mark Verified", new DialogInterface.OnClickListener() { @Override public void onClick(DialogInterface dialog, int which) { SessionRecord sessionRecord = new SessionRecord(VerifyIdentityActivity.this, masterSecret, recipient); IdentityKey identityKey = sessionRecord.getIdentityKey(); String recipientName = recipient.getName(); Intent intent = new Intent(VerifyIdentityActivity.this, SaveIdentityActivity.class); intent.putExtra("name_suggestion", recipientName); intent.putExtra("master_secret", masterSecret); intent.putExtra("identity_key", identityKey); startActivity(intent); finish(); } }); builder.setNegativeButton("Cancel", null); builder.show(); } private void initializeLocalIdentityKey() { if (!IdentityKeyUtil.hasIdentityKey(this)) { localIdentityFingerprint.setText("You do not have an identity key."); return; } localIdentityFingerprint.setText(IdentityKeyUtil.getFingerprint(this)); } private void initializeRemoteIdentityKey() { SessionRecord sessionRecord = new SessionRecord(this, masterSecret, recipient); IdentityKey identityKey = sessionRecord.getIdentityKey(); if (identityKey == null) { remoteIdentityFingerprint.setText("Recipient has no identity key."); } else { remoteIdentityFingerprint.setText(identityKey.getFingerprint()); } } private void initializeFingerprints() { initializeLocalIdentityKey(); initializeRemoteIdentityKey(); } private void initializeResources() { localIdentityFingerprint = (TextView)findViewById(R.id.you_read); remoteIdentityFingerprint = (TextView)findViewById(R.id.friend_reads); recipient = (Recipient)this.getIntent().getParcelableExtra("recipient"); masterSecret = (MasterSecret)this.getIntent().getParcelableExtra("master_secret"); } @Override protected void initiateDisplay() { if (!IdentityKeyUtil.hasIdentityKey(this)) { Toast.makeText(this, "You don't have an identity key!", Toast.LENGTH_LONG).show(); return; } super.initiateDisplay(); } @Override protected void initiateScan() { SessionRecord sessionRecord = new SessionRecord(this, masterSecret, recipient); IdentityKey identityKey = sessionRecord.getIdentityKey(); if (identityKey == null) { Toast.makeText(this, "Recipient has no identity key!", Toast.LENGTH_LONG); } else { super.initiateScan(); } } @Override protected String getScanString() { return "Scan their key to compare"; } @Override protected String getDisplayString() { return "Get my key scanned"; } @Override protected IdentityKey getIdentityKeyToCompare() { SessionRecord sessionRecord = new SessionRecord(this, masterSecret, recipient); return sessionRecord.getIdentityKey(); } @Override protected IdentityKey getIdentityKeyToDisplay() { return IdentityKeyUtil.getIdentityKey(this); } @Override protected String getNotVerifiedMessage() { return "WARNING, the scanned key DOES NOT match! Please check the fingerprint text carefully."; } @Override protected String getNotVerifiedTitle() { return "NOT Verified!"; } @Override protected String getVerifiedMessage() { return "Their key is correct. It is also necessary to verify your key with them as well."; } @Override protected String getVerifiedTitle() { return "Verified!"; } }