2013-05-28 09:10:36 -04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2013-09-08 11:04:33 -04:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2013-05-28 09:10:36 -04:00
|
|
|
android:layout_width="match_parent"
|
2013-09-08 11:04:33 -04:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical" >
|
2013-05-28 09:10:36 -04:00
|
|
|
|
2013-09-08 11:04:33 -04:00
|
|
|
<TextView
|
2013-05-28 09:10:36 -04:00
|
|
|
android:layout_width="match_parent"
|
2013-09-08 11:04:33 -04:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="Encrypt UserIds (split with ',')"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium" />
|
2013-05-28 09:10:36 -04:00
|
|
|
|
2013-09-08 11:04:33 -04:00
|
|
|
<EditText
|
|
|
|
android:id="@+id/crypto_provider_demo_encrypt_user_id"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="dominik@dominikschuermann.de"
|
|
|
|
android:textAppearance="@android:style/TextAppearance.Small" />
|
2013-06-17 13:51:41 -04:00
|
|
|
|
2013-09-08 11:04:33 -04:00
|
|
|
<TextView
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="Message"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium" />
|
2013-06-17 13:51:41 -04:00
|
|
|
|
2013-09-08 11:04:33 -04:00
|
|
|
<EditText
|
|
|
|
android:id="@+id/crypto_provider_demo_message"
|
|
|
|
android:layout_width="match_parent"
|
2013-10-05 12:35:16 -04:00
|
|
|
android:layout_height="100dip"
|
2013-09-08 11:04:33 -04:00
|
|
|
android:scrollHorizontally="true"
|
|
|
|
android:scrollbars="vertical"
|
|
|
|
android:text="message"
|
|
|
|
android:textAppearance="@android:style/TextAppearance.Small" />
|
2013-05-28 09:10:36 -04:00
|
|
|
|
2013-09-08 11:04:33 -04:00
|
|
|
<TextView
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="Ciphertext"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium" />
|
2013-05-28 09:10:36 -04:00
|
|
|
|
2013-09-08 11:04:33 -04:00
|
|
|
<EditText
|
|
|
|
android:id="@+id/crypto_provider_demo_ciphertext"
|
|
|
|
android:layout_width="match_parent"
|
2013-10-05 12:35:16 -04:00
|
|
|
android:layout_height="100dip"
|
2013-09-08 11:04:33 -04:00
|
|
|
android:text="ciphertext"
|
|
|
|
android:textAppearance="@android:style/TextAppearance.Small" />
|
2013-06-17 13:51:41 -04:00
|
|
|
|
2013-09-08 11:04:33 -04:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content" >
|
2013-05-28 09:10:36 -04:00
|
|
|
|
|
|
|
<Button
|
2013-06-17 09:52:09 -04:00
|
|
|
android:id="@+id/crypto_provider_demo_encrypt"
|
2013-05-28 09:10:36 -04:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2013-09-08 11:04:33 -04:00
|
|
|
android:layout_weight="1"
|
2013-05-28 09:10:36 -04:00
|
|
|
android:onClick="encryptOnClick"
|
|
|
|
android:text="Encrypt" />
|
|
|
|
|
2013-06-17 13:51:41 -04:00
|
|
|
<Button
|
|
|
|
android:id="@+id/crypto_provider_demo_sign"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2013-09-08 11:04:33 -04:00
|
|
|
android:layout_weight="1"
|
2013-06-17 13:51:41 -04:00
|
|
|
android:onClick="signOnClick"
|
|
|
|
android:text="Sign" />
|
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/crypto_provider_demo_encrypt_and_sign"
|
2013-10-05 12:35:16 -04:00
|
|
|
android:layout_width="wrap_content"
|
2013-05-28 09:10:36 -04:00
|
|
|
android:layout_height="wrap_content"
|
2013-10-05 12:35:16 -04:00
|
|
|
android:onClick="signAndEncryptOnClick"
|
|
|
|
android:text="Sign and Encrypt" />
|
2013-05-28 09:10:36 -04:00
|
|
|
</LinearLayout>
|
|
|
|
|
2013-10-05 12:35:16 -04:00
|
|
|
<Button
|
|
|
|
android:id="@+id/crypto_provider_demo_decrypt_and_verify"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:onClick="decryptAndVerifyOnClick"
|
|
|
|
android:text="Decrypt and Verify" />
|
|
|
|
|
2013-09-08 11:04:33 -04:00
|
|
|
</LinearLayout>
|