2013-05-28 09:10:36 -04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content" >
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical" >
|
|
|
|
|
2013-06-17 13:51:41 -04:00
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="Encrypt User Id"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium" />
|
|
|
|
|
|
|
|
<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" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="Sign User Id"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium" />
|
|
|
|
|
|
|
|
<EditText
|
|
|
|
android:id="@+id/crypto_provider_demo_sign_user_id"
|
2013-05-28 09:10:36 -04:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2013-06-17 13:51:41 -04:00
|
|
|
android:text="dominik@dominikschuermann.de"
|
|
|
|
android:textAppearance="@android:style/TextAppearance.Small" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="Message"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium" />
|
2013-05-28 09:10:36 -04:00
|
|
|
|
|
|
|
<EditText
|
2013-06-17 09:52:09 -04:00
|
|
|
android:id="@+id/crypto_provider_demo_message"
|
2013-05-28 09:10:36 -04:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="150dip"
|
|
|
|
android:text="message"
|
|
|
|
android:textAppearance="@android:style/TextAppearance.Small" />
|
|
|
|
|
2013-06-17 13:51:41 -04:00
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="Ciphertext"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium" />
|
|
|
|
|
2013-05-28 09:10:36 -04:00
|
|
|
<EditText
|
2013-06-17 09:52:09 -04:00
|
|
|
android:id="@+id/crypto_provider_demo_ciphertext"
|
2013-05-28 09:10:36 -04:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="150dip"
|
2013-06-17 13:51:41 -04:00
|
|
|
android:text="ciphertext"
|
2013-05-28 09:10:36 -04:00
|
|
|
android:textAppearance="@android:style/TextAppearance.Small" />
|
|
|
|
|
|
|
|
<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"
|
|
|
|
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"
|
|
|
|
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:onClick="encryptAndSignOnClick"
|
|
|
|
android:text="Encrypt and Sign" />
|
|
|
|
|
2013-05-28 09:10:36 -04:00
|
|
|
<Button
|
2013-06-17 09:52:09 -04:00
|
|
|
android:id="@+id/crypto_provider_demo_decrypt"
|
2013-05-28 09:10:36 -04:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:onClick="decryptOnClick"
|
|
|
|
android:text="Decrypt" />
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</ScrollView>
|