2014-03-05 20:42:11 +02:00
|
|
|
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
|
2014-08-14 15:24:37 +02:00
|
|
|
<PreferenceCategory android:title="@string/section_defaults">
|
2014-09-12 08:34:51 -07:00
|
|
|
<org.sufficientlysecure.keychain.ui.widget.IntegerListPreference
|
|
|
|
|
android:entries="@array/passphrase_cache_ttl_entries"
|
|
|
|
|
android:entryValues="@array/passphrase_cache_ttl_values"
|
|
|
|
|
android:key="passphraseCacheTtl"
|
|
|
|
|
android:persistent="false"
|
|
|
|
|
android:title="@string/label_passphrase_cache_ttl" />
|
2014-09-23 15:56:48 +02:00
|
|
|
<CheckBoxPreference
|
|
|
|
|
android:key="passphraseCacheSubs"
|
|
|
|
|
android:persistent="false"
|
|
|
|
|
android:title="@string/label_passphrase_cache_subs" />
|
2013-01-16 14:31:16 +01:00
|
|
|
<org.sufficientlysecure.keychain.ui.widget.IntegerListPreference
|
2010-06-17 13:23:07 +00:00
|
|
|
android:key="defaultEncryptionAlgorithm"
|
|
|
|
|
android:persistent="false"
|
2013-10-25 21:46:05 +02:00
|
|
|
android:title="@string/label_encryption_algorithm" />
|
2013-01-16 14:31:16 +01:00
|
|
|
<org.sufficientlysecure.keychain.ui.widget.IntegerListPreference
|
2010-06-17 13:23:07 +00:00
|
|
|
android:key="defaultHashAlgorithm"
|
|
|
|
|
android:persistent="false"
|
2013-10-25 21:46:05 +02:00
|
|
|
android:title="@string/label_hash_algorithm" />
|
2013-01-16 14:31:16 +01:00
|
|
|
<org.sufficientlysecure.keychain.ui.widget.IntegerListPreference
|
2010-06-17 13:23:07 +00:00
|
|
|
android:key="defaultMessageCompression"
|
|
|
|
|
android:persistent="false"
|
2013-10-25 21:46:05 +02:00
|
|
|
android:title="@string/label_message_compression" />
|
2013-01-16 14:31:16 +01:00
|
|
|
<org.sufficientlysecure.keychain.ui.widget.IntegerListPreference
|
2010-06-17 13:23:07 +00:00
|
|
|
android:key="defaultFileCompression"
|
2012-03-09 16:27:29 +01:00
|
|
|
android:persistent="false"
|
2013-10-25 21:46:05 +02:00
|
|
|
android:title="@string/label_file_compression" />
|
2010-06-17 13:23:07 +00:00
|
|
|
<CheckBoxPreference
|
2014-04-02 15:36:32 +02:00
|
|
|
android:key="defaultAsciiArmor"
|
2012-03-09 16:27:29 +01:00
|
|
|
android:persistent="false"
|
2013-10-25 21:46:05 +02:00
|
|
|
android:title="@string/label_ascii_armor" />
|
2014-08-14 15:24:37 +02:00
|
|
|
</PreferenceCategory>
|
|
|
|
|
<PreferenceCategory android:title="@string/section_advanced">
|
2014-07-12 15:12:35 +02:00
|
|
|
<CheckBoxPreference
|
2014-08-14 11:44:47 +02:00
|
|
|
android:key="writeVersionHeader"
|
2014-07-12 15:12:35 +02:00
|
|
|
android:persistent="false"
|
2014-08-14 11:44:47 +02:00
|
|
|
android:title="@string/label_write_version_header"
|
|
|
|
|
android:summary="@string/label_write_version_header_summary" />
|
2010-06-17 13:23:07 +00:00
|
|
|
</PreferenceCategory>
|
2014-09-12 14:21:18 -07:00
|
|
|
<CheckBoxPreference
|
|
|
|
|
android:key="useDefaultYubikeyPin"
|
|
|
|
|
android:persistent="false"
|
|
|
|
|
android:defaultValue="true"
|
|
|
|
|
android:title="@string/label_use_default_yubikey_pin"
|
|
|
|
|
android:summary="@string/label_label_use_default_yubikey_pin_summary" />
|
2014-10-13 04:47:48 +02:00
|
|
|
<CheckBoxPreference
|
|
|
|
|
android:key="useNumKeypadForYubikeyPin"
|
|
|
|
|
android:persistent="false"
|
|
|
|
|
android:defaultValue="false"
|
|
|
|
|
android:title="@string/label_use_num_keypad_for_yubikey_pin" />
|
2014-04-02 15:36:32 +02:00
|
|
|
</PreferenceScreen>
|