diff options
author | Dominik Schürmann <dominik@dominikschuermann.de> | 2013-05-28 15:10:36 +0200 |
---|---|---|
committer | Dominik Schürmann <dominik@dominikschuermann.de> | 2013-05-28 15:10:36 +0200 |
commit | b221c0c9051d7dea697aff7b3167fca69eb1f4f8 (patch) | |
tree | e973bdd30cd4c2b7e7366e693077210df795032b /OpenPGP-Keychain-API-Demo/res | |
parent | 8c537d33678bfa1583598923608494a49e8781ea (diff) | |
download | open-keychain-b221c0c9051d7dea697aff7b3167fca69eb1f4f8.tar.gz open-keychain-b221c0c9051d7dea697aff7b3167fca69eb1f4f8.tar.bz2 open-keychain-b221c0c9051d7dea697aff7b3167fca69eb1f4f8.zip |
Crypto Provider implementation start
Diffstat (limited to 'OpenPGP-Keychain-API-Demo/res')
-rw-r--r-- | OpenPGP-Keychain-API-Demo/res/layout/crypto_provider_demo.xml | 72 | ||||
-rw-r--r-- | OpenPGP-Keychain-API-Demo/res/xml/base_preference.xml | 5 |
2 files changed, 77 insertions, 0 deletions
diff --git a/OpenPGP-Keychain-API-Demo/res/layout/crypto_provider_demo.xml b/OpenPGP-Keychain-API-Demo/res/layout/crypto_provider_demo.xml new file mode 100644 index 000000000..447734a52 --- /dev/null +++ b/OpenPGP-Keychain-API-Demo/res/layout/crypto_provider_demo.xml @@ -0,0 +1,72 @@ +<?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" > + + <Button + android:id="@+id/crypto_provider_demo_register" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:onClick="registerCryptoProvider" + android:text="Register crypto provider" /> + + <Button + android:id="@+id/aidl_demo_select_secret_key" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:onClick="selectSecretKeyOnClick" + android:text="Select secret key" /> + + <Button + android:id="@+id/aidl_demo_select_encryption_key" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:onClick="selectEncryptionKeysOnClick" + android:text="Select encryption key(s)" /> + + <EditText + android:id="@+id/aidl_demo_message" + android:layout_width="match_parent" + android:layout_height="150dip" + android:text="message" + android:textAppearance="@android:style/TextAppearance.Small" /> + + <EditText + android:id="@+id/aidl_demo_ciphertext" + android:layout_width="match_parent" + android:layout_height="150dip" + android:text="ciphertext" + android:textAppearance="@android:style/TextAppearance.Small" /> + + <Button + android:id="@+id/aidl_demo_encrypt" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:onClick="encryptOnClick" + android:text="Encrypt" /> + + <Button + android:id="@+id/aidl_demo_decrypt" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:onClick="decryptOnClick" + android:text="Decrypt" /> + + <TextView + android:layout_width="match_parent" + android:layout_height="match_parent" + android:text="APG Data:" /> + + <TextView + android:id="@+id/aidl_demo_data" + android:layout_width="match_parent" + android:layout_height="match_parent" + android:minLines="10" /> + </LinearLayout> + +</ScrollView>
\ No newline at end of file diff --git a/OpenPGP-Keychain-API-Demo/res/xml/base_preference.xml b/OpenPGP-Keychain-API-Demo/res/xml/base_preference.xml index c9a34efd1..7e312ddf3 100644 --- a/OpenPGP-Keychain-API-Demo/res/xml/base_preference.xml +++ b/OpenPGP-Keychain-API-Demo/res/xml/base_preference.xml @@ -19,5 +19,10 @@ android:key="aidl_demo2" android:title="AIDL Demo (ACCESS_KEYS permission)" /> </PreferenceCategory> + <PreferenceCategory android:title="Crypto Provider" > + <Preference + android:key="crypto_provider_demo" + android:title="Crypto Provider" /> + </PreferenceCategory> </PreferenceScreen>
\ No newline at end of file |