2012-07-23 20:42:29 +00:00
|
|
|
/**
|
2011-12-20 18:20:44 +00:00
|
|
|
* Copyright (C) 2011 Whisper Systems
|
2012-07-23 20:42:29 +00:00
|
|
|
*
|
2011-12-20 18:20:44 +00:00
|
|
|
* 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.
|
2012-07-23 20:42:29 +00:00
|
|
|
*
|
2011-12-20 18:20:44 +00:00
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
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;
|
|
|
|
|
2012-07-23 20:42:29 +00:00
|
|
|
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;
|
|
|
|
|
2011-12-20 18:20:44 +00:00
|
|
|
/**
|
|
|
|
* Activity for verifying identity keys.
|
2012-07-23 20:42:29 +00:00
|
|
|
*
|
2011-12-20 18:20:44 +00:00
|
|
|
* @author Moxie Marlinspike
|
|
|
|
*/
|
2012-07-23 20:42:29 +00:00
|
|
|
public class VerifyIdentityActivity extends KeyVerifyingActivity {
|
|
|
|
|
2011-12-20 18:20:44 +00:00
|
|
|
private Recipient recipient;
|
|
|
|
private MasterSecret masterSecret;
|
2012-07-23 20:42:29 +00:00
|
|
|
|
2011-12-20 18:20:44 +00:00
|
|
|
private TextView localIdentityFingerprint;
|
|
|
|
private TextView remoteIdentityFingerprint;
|
2012-07-23 20:42:29 +00:00
|
|
|
|
2011-12-20 18:20:44 +00:00
|
|
|
@Override
|
|
|
|
public void onCreate(Bundle state) {
|
|
|
|
super.onCreate(state);
|
|
|
|
setContentView(R.layout.verify_identity_activity);
|
2012-07-23 20:42:29 +00:00
|
|
|
|
2011-12-20 18:20:44 +00:00
|
|
|
initializeResources();
|
|
|
|
initializeFingerprints();
|
|
|
|
}
|
2012-07-23 20:42:29 +00:00
|
|
|
|
2011-12-20 18:20:44 +00:00
|
|
|
@Override
|
|
|
|
protected void onDestroy() {
|
|
|
|
MemoryCleaner.clean(masterSecret);
|
|
|
|
super.onDestroy();
|
|
|
|
}
|
2012-07-23 20:42:29 +00:00
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void handleVerified() {
|
|
|
|
AlertDialog.Builder builder = new AlertDialog.Builder(this);
|
|
|
|
builder.setIcon(android.R.drawable.ic_dialog_alert);
|
2012-09-08 03:03:23 +00:00
|
|
|
builder.setTitle(R.string.mark_identity_verified_question);
|
|
|
|
builder.setMessage(R.string.are_you_sure_you_have_validated_the_recipients_identity_fingerprint_and_would_like_to_mark_it_as_verified);
|
2012-07-23 20:42:29 +00:00
|
|
|
|
2012-09-08 03:03:23 +00:00
|
|
|
builder.setPositiveButton(R.string.mark_verified, new DialogInterface.OnClickListener() {
|
2012-07-23 20:42:29 +00:00
|
|
|
@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();
|
|
|
|
}
|
|
|
|
|
2011-12-20 18:20:44 +00:00
|
|
|
private void initializeLocalIdentityKey() {
|
|
|
|
if (!IdentityKeyUtil.hasIdentityKey(this)) {
|
2012-09-08 03:03:23 +00:00
|
|
|
localIdentityFingerprint.setText(R.string.you_do_not_have_an_identity_key);
|
2011-12-20 18:20:44 +00:00
|
|
|
return;
|
|
|
|
}
|
2012-07-23 20:42:29 +00:00
|
|
|
|
2011-12-20 18:20:44 +00:00
|
|
|
localIdentityFingerprint.setText(IdentityKeyUtil.getFingerprint(this));
|
|
|
|
}
|
|
|
|
|
|
|
|
private void initializeRemoteIdentityKey() {
|
|
|
|
SessionRecord sessionRecord = new SessionRecord(this, masterSecret, recipient);
|
|
|
|
IdentityKey identityKey = sessionRecord.getIdentityKey();
|
2012-07-23 20:42:29 +00:00
|
|
|
|
2011-12-20 18:20:44 +00:00
|
|
|
if (identityKey == null) {
|
2012-09-08 03:03:23 +00:00
|
|
|
remoteIdentityFingerprint.setText(R.string.recipient_has_no_identity_key);
|
2011-12-20 18:20:44 +00:00
|
|
|
} else {
|
|
|
|
remoteIdentityFingerprint.setText(identityKey.getFingerprint());
|
|
|
|
}
|
|
|
|
}
|
2012-07-23 20:42:29 +00:00
|
|
|
|
2011-12-20 18:20:44 +00:00
|
|
|
private void initializeFingerprints() {
|
|
|
|
initializeLocalIdentityKey();
|
|
|
|
initializeRemoteIdentityKey();
|
|
|
|
}
|
2012-07-23 20:42:29 +00:00
|
|
|
|
2011-12-20 18:20:44 +00:00
|
|
|
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)) {
|
2012-09-08 03:03:23 +00:00
|
|
|
Toast.makeText(this, R.string.you_don_t_have_an_identity_key_exclamation, Toast.LENGTH_LONG).show();
|
2011-12-20 18:20:44 +00:00
|
|
|
return;
|
|
|
|
}
|
2012-07-23 20:42:29 +00:00
|
|
|
|
2011-12-20 18:20:44 +00:00
|
|
|
super.initiateDisplay();
|
|
|
|
}
|
2012-07-23 20:42:29 +00:00
|
|
|
|
2011-12-20 18:20:44 +00:00
|
|
|
@Override
|
|
|
|
protected void initiateScan() {
|
|
|
|
SessionRecord sessionRecord = new SessionRecord(this, masterSecret, recipient);
|
|
|
|
IdentityKey identityKey = sessionRecord.getIdentityKey();
|
2012-07-23 20:42:29 +00:00
|
|
|
|
2011-12-20 18:20:44 +00:00
|
|
|
if (identityKey == null) {
|
2012-09-08 03:03:23 +00:00
|
|
|
Toast.makeText(this, R.string.recipient_has_no_identity_key_exclamation, Toast.LENGTH_LONG).show();
|
2011-12-20 18:20:44 +00:00
|
|
|
} else {
|
|
|
|
super.initiateScan();
|
2012-07-23 20:42:29 +00:00
|
|
|
}
|
2011-12-20 18:20:44 +00:00
|
|
|
}
|
2012-07-23 20:42:29 +00:00
|
|
|
|
2011-12-20 18:20:44 +00:00
|
|
|
@Override
|
|
|
|
protected String getScanString() {
|
2012-09-08 03:03:23 +00:00
|
|
|
return getString(R.string.scan_their_key_to_compare);
|
2011-12-20 18:20:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected String getDisplayString() {
|
2012-09-08 03:03:23 +00:00
|
|
|
return getString(R.string.get_my_key_scanned);
|
2011-12-20 18:20:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@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() {
|
2012-09-08 03:03:23 +00:00
|
|
|
return getString(R.string.warning_the_scanned_key_does_not_match_please_check_the_fingerprint_text_carefully);
|
2011-12-20 18:20:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected String getNotVerifiedTitle() {
|
2012-09-08 03:03:23 +00:00
|
|
|
return getString(R.string.not_verified_exclamation);
|
2011-12-20 18:20:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected String getVerifiedMessage() {
|
2012-09-08 03:03:23 +00:00
|
|
|
return getString(R.string.their_key_is_correct_it_is_also_necessary_to_verify_your_key_with_them_as_well);
|
2011-12-20 18:20:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected String getVerifiedTitle() {
|
2012-09-08 03:03:23 +00:00
|
|
|
return getString(R.string.verified_exclamation);
|
2011-12-20 18:20:44 +00:00
|
|
|
}
|
|
|
|
}
|