2010-06-17 09:23:07 -04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2012-03-09 10:27:29 -05:00
|
|
|
<!--
|
|
|
|
Copyright (C) 2010 Thialfihar <thi@thialfihar.org>
|
2010-06-17 09:23:07 -04:00
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
-->
|
|
|
|
|
2012-03-09 10:27:29 -05:00
|
|
|
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" >
|
2010-06-17 09:23:07 -04:00
|
|
|
|
2012-03-09 10:27:29 -05:00
|
|
|
<PreferenceCategory android:title="@string/section_general" >
|
2013-01-16 08:31:16 -05:00
|
|
|
<org.sufficientlysecure.keychain.ui.widget.IntegerListPreference
|
2010-06-17 09:23:07 -04:00
|
|
|
android:entries="@array/pass_phrase_cache_ttl_entries"
|
|
|
|
android:entryValues="@array/pass_phrase_cache_ttl_values"
|
2012-03-09 10:27:29 -05:00
|
|
|
android:key="passPhraseCacheTtl"
|
|
|
|
android:persistent="false"
|
2013-10-25 15:46:05 -04:00
|
|
|
android:title="@string/label_passphrase_cache_ttl" />
|
2010-06-17 09:23:07 -04:00
|
|
|
|
2010-08-17 17:49:34 -04:00
|
|
|
<PreferenceScreen
|
|
|
|
android:key="keyServers"
|
2012-03-09 10:27:29 -05:00
|
|
|
android:persistent="false"
|
2013-10-25 15:46:05 -04:00
|
|
|
android:title="@string/label_key_servers" />
|
2010-06-17 09:23:07 -04:00
|
|
|
</PreferenceCategory>
|
2012-03-09 10:27:29 -05:00
|
|
|
<PreferenceCategory android:title="@string/section_defaults" >
|
2013-01-16 08:31:16 -05:00
|
|
|
<org.sufficientlysecure.keychain.ui.widget.IntegerListPreference
|
2010-06-17 09:23:07 -04:00
|
|
|
android:key="defaultEncryptionAlgorithm"
|
|
|
|
android:persistent="false"
|
2013-10-25 15:46:05 -04:00
|
|
|
android:title="@string/label_encryption_algorithm" />
|
2013-01-16 08:31:16 -05:00
|
|
|
<org.sufficientlysecure.keychain.ui.widget.IntegerListPreference
|
2010-06-17 09:23:07 -04:00
|
|
|
android:key="defaultHashAlgorithm"
|
|
|
|
android:persistent="false"
|
2013-10-25 15:46:05 -04:00
|
|
|
android:title="@string/label_hash_algorithm" />
|
2013-01-16 08:31:16 -05:00
|
|
|
<org.sufficientlysecure.keychain.ui.widget.IntegerListPreference
|
2010-06-17 09:23:07 -04:00
|
|
|
android:key="defaultMessageCompression"
|
|
|
|
android:persistent="false"
|
2013-10-25 15:46:05 -04:00
|
|
|
android:title="@string/label_message_compression" />
|
2013-01-16 08:31:16 -05:00
|
|
|
<org.sufficientlysecure.keychain.ui.widget.IntegerListPreference
|
2010-06-17 09:23:07 -04:00
|
|
|
android:key="defaultFileCompression"
|
2012-03-09 10:27:29 -05:00
|
|
|
android:persistent="false"
|
2013-10-25 15:46:05 -04:00
|
|
|
android:title="@string/label_file_compression" />
|
2010-06-17 09:23:07 -04:00
|
|
|
|
|
|
|
<CheckBoxPreference
|
|
|
|
android:key="defaultAsciiArmour"
|
2012-03-09 10:27:29 -05:00
|
|
|
android:persistent="false"
|
2013-10-25 15:46:05 -04:00
|
|
|
android:title="@string/label_ascii_armor" />
|
2010-06-17 09:23:07 -04:00
|
|
|
</PreferenceCategory>
|
2012-03-09 10:27:29 -05:00
|
|
|
<PreferenceCategory android:title="@string/section_advanced" >
|
2010-07-27 18:41:50 -04:00
|
|
|
<CheckBoxPreference
|
|
|
|
android:key="forceV3Signatures"
|
2012-03-09 10:27:29 -05:00
|
|
|
android:persistent="false"
|
2013-10-25 15:46:05 -04:00
|
|
|
android:title="@string/label_force_v3_signature" />
|
2010-07-27 18:41:50 -04:00
|
|
|
</PreferenceCategory>
|
|
|
|
|
2012-03-09 10:27:29 -05:00
|
|
|
</PreferenceScreen>
|