Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions src/com/example/securesms/Smsencrypt.java
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ String getRawKey() {
return Encryption.toHex(key.getEncoded());
}
}



private final Encryptor PADDING_ENCRYPTOR = new Encryptor() {
Expand Down Expand Up @@ -105,7 +105,7 @@ public String decrypt(String ciphertext, String password) {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);

setContentView(R.layout.activity_smsencrypt);
ActionBar bar = getActionBar();
bar.setBackgroundDrawable(new ColorDrawable(Color.parseColor("#3fa9f5")));
Expand All @@ -121,11 +121,11 @@ protected void onCreate(Bundle savedInstanceState) {
messageSent = findById(R.id.sent);
decryptButton = findById(R.id.decrypt_button);
AutoComplete();









sendSMS.setOnClickListener(new View.OnClickListener() {
@Override
Expand Down Expand Up @@ -224,7 +224,7 @@ private String getPass() {

public static void setIncomingMessage(String aMessage) {
msgTxt.setText(aMessage);

}

@Override
Expand Down Expand Up @@ -458,7 +458,7 @@ public void onReceive(Context context, Intent intent) {
};




@Override
protected void onResume() {
Expand Down