/** * 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 <http://www.gnu.org/licenses/>. */ package com.securecomcode.text; import android.graphics.drawable.Drawable; import android.os.AsyncTask; import android.os.Build; import android.os.Bundle; import android.view.View; import android.widget.Button; import android.widget.EditText; import android.widget.LinearLayout; import android.widget.Toast; import com.actionbarsherlock.app.ActionBar; import com.securecomcode.text.crypto.IdentityKeyUtil; import com.securecomcode.text.util.TextSecurePreferences; import org.whispersystems.textsecure.crypto.MasterSecret; import com.securecomcode.text.crypto.MasterSecretUtil; import com.securecomcode.text.util.MemoryCleaner; import com.securecomcode.text.util.VersionTracker; import org.whispersystems.textsecure.util.Util; /** * Activity for creating a user's local encryption passphrase. * * @author Moxie Marlinspike */ public class PassphraseCreateActivity extends PassphraseActivity { public PassphraseCreateActivity() { } @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.create_passphrase_activity); initializeResources(); } private void initializeResources() { getSupportActionBar().setDisplayOptions(ActionBar.DISPLAY_SHOW_CUSTOM); getSupportActionBar().setCustomView(R.layout.light_centered_app_title); mitigateAndroidTilingBug(); TextSecurePreferences.setPasswordDisabled(this, true); new SecretGenerator().execute(MasterSecretUtil.UNENCRYPTED_PASSPHRASE); } private class SecretGenerator extends AsyncTask<String, Void, Void> { private MasterSecret masterSecret; @Override protected void onPreExecute() { } @Override protected Void doInBackground(String... params) { String passphrase = params[0]; masterSecret = MasterSecretUtil.generateMasterSecret(PassphraseCreateActivity.this, passphrase); MemoryCleaner.clean(passphrase); MasterSecretUtil.generateAsymmetricMasterSecret(PassphraseCreateActivity.this, masterSecret); IdentityKeyUtil.generateIdentityKeys(PassphraseCreateActivity.this, masterSecret); VersionTracker.updateLastSeenVersion(PassphraseCreateActivity.this); return null; } @Override protected void onPostExecute(Void param) { setMasterSecret(masterSecret); } } private void mitigateAndroidTilingBug() { if (Build.VERSION.SDK_INT <= Build.VERSION_CODES.ICE_CREAM_SANDWICH) { Drawable actionBarBackground = getResources().getDrawable(R.drawable.background_pattern_repeat); Util.fixBackgroundRepeat(actionBarBackground); getSupportActionBar().setBackgroundDrawable(actionBarBackground); Util.fixBackgroundRepeat(findViewById(R.id.scroll_parent).getBackground()); } } @Override protected void cleanup() { System.gc(); } }