85 lines
3.1 KiB
XML
Raw Normal View History

2013-05-28 15:10:36 +02:00
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
2013-05-28 15:10:36 +02:00
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
2013-05-28 15:10:36 +02:00
<TextView
2013-05-28 15:10:36 +02:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Encrypt UserIds (split with &apos;,&apos;)"
android:textAppearance="?android:attr/textAppearanceMedium" />
2013-05-28 15:10:36 +02: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 19:51:41 +02:00
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Message"
android:textAppearance="?android:attr/textAppearanceMedium" />
2013-06-17 19:51:41 +02:00
<EditText
android:id="@+id/crypto_provider_demo_message"
android:layout_width="match_parent"
android:layout_height="150dip"
android:scrollHorizontally="true"
android:scrollbars="vertical"
android:text="message"
android:textAppearance="@android:style/TextAppearance.Small" />
2013-05-28 15:10:36 +02:00
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Ciphertext"
android:textAppearance="?android:attr/textAppearanceMedium" />
2013-05-28 15:10:36 +02:00
<EditText
android:id="@+id/crypto_provider_demo_ciphertext"
android:layout_width="match_parent"
android:layout_height="150dip"
android:text="ciphertext"
android:textAppearance="@android:style/TextAppearance.Small" />
2013-06-17 19:51:41 +02:00
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
2013-05-28 15:10:36 +02:00
<Button
android:id="@+id/crypto_provider_demo_encrypt"
2013-05-28 15:10:36 +02:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
2013-05-28 15:10:36 +02:00
android:onClick="encryptOnClick"
android:text="Encrypt" />
2013-06-17 19:51:41 +02:00
<Button
android:id="@+id/crypto_provider_demo_sign"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
2013-06-17 19:51:41 +02:00
android:onClick="signOnClick"
android:text="Sign" />
<Button
android:id="@+id/crypto_provider_demo_encrypt_and_sign"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
2013-06-17 19:51:41 +02:00
android:onClick="encryptAndSignOnClick"
android:text="Encrypt and Sign" />
2013-05-28 15:10:36 +02:00
<Button
2013-09-09 22:38:09 +02:00
android:id="@+id/crypto_provider_demo_decrypt_and_verify"
2013-05-28 15:10:36 +02:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:onClick="decryptAndVerifyOnClick"
2013-09-09 22:38:09 +02:00
android:text="Decrypt and Verify" />
2013-05-28 15:10:36 +02:00
</LinearLayout>
</LinearLayout>