aboutsummaryrefslogtreecommitdiffstats
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* auto-click encrypt/decrypt button when using an *_AND_RETURN Intent with ↵Thialfihar2010-12-252-2/+2
| | | | | | | EXTRA_DATA or ContentURI Fixes issue 67
* show key fingerprint in key listThialfihar2010-12-258-11/+58
| | | | | Fixes issue 76
* DataSource: consider content URI sources "binary" alsoThialfihar2010-12-251-1/+5
|
* added an Intent and functionality to generate detached signaturesThialfihar2010-12-253-10/+176
|
* start encryption/decryption for ENCRYPT_AND_RETURN/DECRYPT_AND_RETURN if ↵Thialfihar2010-09-262-2/+2
| | | | MESSAGE_DATA is used rather than MESSAGE_TEXT
* testing thread-pausing in verifyText()Thialfihar2010-09-125-10/+68
|
* moved some Intent extra constants into more appropriate places, some basic ↵Thialfihar2010-09-1113-33/+97
| | | | preparations to test thread-pausing during decryption/encryption to deal with certain situations, mainly an unknown signature key
* catch null pointer exceptions when the private key cannot be extracted, also ↵Thialfihar2010-09-104-6/+60
| | | | | | | prevent such keys from getting imported, so the error message should never be encountered anyway Fixes issue 66
* trivial variable renamingThialfihar2010-08-311-3/+3
|
* moved key editing beta warning into strings.xmlThialfihar2010-08-221-1/+2
| | | | | | | Update issue 39 added: <string name="keyEditingIsBeta">Key editing is still kind of beta.</string>
* integrated key server look-up into decrypt Activity, allowing to touch an ↵Thialfihar2010-08-185-10/+35
| | | | | | | | unkown signature to import the key Update issue 39 added: <string name="unknownSignatureKeyTouchToLookUp">Unknown signature, touch to look up key.</string>
* explicitly set a timeout for connecting and reading for a key server queryThialfihar2010-08-181-0/+2
|
* starting new versioning for beta builds, only show changelog on release buildsThialfihar2010-08-182-1/+15
|
* added a context menu item to update public keys via key server, adding a key ↵Thialfihar2010-08-185-12/+96
| | | | | | | | id look up Intent for the key server query Update issue 9 Status: Fixed Added public key update via key server. Considering this issue fixed now. More key server features will be added, but general support is added.
* use the key server preference to fill a Spinner in the key server query ↵Thialfihar2010-08-172-19/+26
| | | | | | | activity, allowing to query each server, also moved some previously static labels into strings.xml Update issue 9 Key server preferences are now used in key server query activity.
* moved IntegerListPreference to apg.ui.widgetThialfihar2010-08-172-1/+2
|
* added a key server preference, allowing multiple key servers to be addedThialfihar2010-08-177-0/+299
| | | | | Update issue 9 Key server preference added.
* gave HKP server proper error handling, going through all IPs of a pool until ↵Thialfihar2010-08-173-39/+129
| | | | | | | a response is received, reporting "too many responses", "no keys found", "insufficient query" correctly Update issue 9 Proper error handling added.
* properly URI-decode file:// URIs, so the files can be foundThialfihar2010-08-174-4/+4
| | | | Fixes issues 63
* added initial support for HKP key servers, allowing searching and key importThialfihar2010-08-1713-19/+443
| | | | | Update issue 9 Can search a key server now, touch a result to import the key. Still needs better error handling and some Intents to import keys based on key ID. Also still need key server preferences.
* 1.0.x merged back into trunkThialfihar2010-08-151-48/+78
|
* minor Intent/Extra key renamingsThialfihar2010-08-122-7/+8
|
* changed the account adding a bit, hopefully working with Froyo, at least ↵Thialfihar2010-08-051-9/+21
| | | | | | | | preventing a crash Update issue 39 added: <string name="error_accountReadingNotAllowed">no permission to read the account</string>
* added a "force V3 signature" setting similar to the GPG version, hopefully ↵Thialfihar2010-07-275-36/+140
| | | | | | | | | | | | making APG useful for some special cases where that is needed Update issue 39 Two new strings: <string name="section_advanced">Advanced</string> <string name="label_forceV3Signature">Force V3 Signatures</string> "V3" is just "version 3" and should remain untranslated, both strings can be seen at the bottom of the preferences activity.
* added an optional checkbox to the file dialog, can be used for instance to ↵Thialfihar2010-07-265-12/+38
| | | | | | | | optionally delete files after importing them, and is used for that, also rearranged the option menu items for the main activity a little Update issue 39 Added a new string: <string name="label_deleteAfterImport">Delete After Import</string>
* change the text of encrypt buttons according to selected signature or keys, ↵Thialfihar2010-07-241-9/+70
| | | | | | | | | | making sign-only less confusing Update issue 39 New strings to give the encrypt buttons more meaningful and fitting texts: <string name="btn_signToClipboard">Sign To Clipboard</string> <string name="btn_signAndEmail">Sign And Email</string> <string name="btn_sign">Sign</string>
* added a little getting started dialog for first-time use, explaining some ↵Thialfihar2010-07-244-10/+74
| | | | | | | | | | | | | | | | | basics and recommending other apps Update issue 39 Added: <string name="title_help">Getting Started</string> <string name="menu_help">Help</string> <!-- "OI File Manager", "ASTRO", and "K-9 Mail" must NOT be translated in order for the links to the market to work. --> <string name="text_help">Install K-9 Mail for the best integration, it supports APG for PGP/INLINE and lets you directly encrypt/decrypt emails. \n\nIt is recommended that you install OI File Manager or ASTRO to be able to use the browse button for file selection in APG. \n\nFirst you need some keys. Either import them via the option menus in \"Manage Public Keys\" and \"Manage Secret Keys\" or create them in \"Manage Secret Keys\". \n\nYou can also add a GMail account in the main activity via \"Add Account\", which simplifies decrypting emails received there. \n\nCheck out the option menus in the various activities to find more functions. </string>
* added secure file deletion, overwriting the file with random data before ↵Thialfihar2010-07-245-19/+82
| | | | | | | | | | | | | actual deletion Update issue 56 Added a method for secure file deletion. We'll possibly have to test this a bit and make sure it actually *is* secure on the filesystems used (vfat for SD card, yaffs2 for phone flash memory by default). This sort of overwrite might be absolutely useless on some filesystems. I also wanted to add an option at first, but this seems reasonably fast and in general it should be what the user wants, so for now it will ALWAYS securely delete. If there is a demand for plain deletion, then options can be added. Update issue 39 A new string: <string name="progress_deletingSecurely">deleting \'%s\' securely...</string>
* have a direct set/change pass phrase button in key creation/editing, instead ↵Thialfihar2010-07-231-19/+20
| | | | of hiding it in the menu, also capitalize user id names automatically and give the email field an inputType of textEmailAddress
* added a language setting to change the language directlyThialfihar2010-07-185-2/+71
|
* fixed two variable namesThialfihar2010-07-181-9/+9
|
* fixed the made-up word "authentification", also changed the title of that ↵Thialfihar2010-07-181-1/+1
| | | | | | | dialog to "Pass Phrase", dialog message then only contains the key details or "Symmetric encryption." Update issue 39 I tried to change "title_athentication", "passPhraseForSymmetricEncryption", and "passPhraseFor" in all languages. I think the changes are correct, but if you guys could make sure I didn't do anything dumb, then that'd be better. :)
* 1.0.x changes merged into trunkThialfihar2010-07-165-7/+15
|
* set svn:eol-style to LF for all code/resource filesThialfihar2010-07-1633-6930/+6930
|
* removed unnecessary importsThialfihar2010-07-163-3/+3
|
* trying to add support for various source and destination modes for ↵Thialfihar2010-07-0915-186/+380
| | | | encryption and decryption (String, byte[], filename, content stream), also more Intent options added
* some playing with content stream decryption and providing the result as ↵Thialfihar2010-07-093-35/+116
| | | | content stream
* added some info about the speed of compression algorithms, mostly to warn ↵Thialfihar2010-07-053-28/+73
| | | | about BZIP2, also added support for content URIs in file encrypt/decrypt activities
* prevent endless loop on some binary data during stream content determination ↵Thialfihar2010-07-011-0/+1
| | | | in GeneralActivity
* merge 1.0.x back into trunkThialfihar2010-06-302-5/+5
|
* much better version reading by directly looking for the APG package, rather ↵Thialfihar2010-06-181-12/+7
| | | | than looping through all installed packages
* removed an outdated TODO commentThialfihar2010-06-171-3/+0
|
* using proper PreferenceActivity now, tho the underlying storage of the ↵Thialfihar2010-06-177-285/+343
| | | | values remained almost the same, some changes how the preferences are accessed and how the cache service is started
* recent 1.0.x changes into trunkThialfihar2010-06-173-8/+11
|
* useless imports removedThialfihar2010-06-081-4/+0
|
* finally read APG version dynamicly, so the version name doesn't have to be ↵Thialfihar2010-06-084-7/+39
| | | | changed anywhere but the manifest
* make sure the preselected encryption key can encrypt, otherwise deselect it ↵Thialfihar2010-06-071-0/+4
| | | | again at display time
* in the encrypt activity automatically select the signature key as encryption ↵Thialfihar2010-06-071-1/+17
| | | | key, if it is set, and if the button is pressed
* limit GeneralActivity to non-Uri Intents or file:// Uri Intents, now ↵Thialfihar2010-06-063-18/+60
| | | | handling key imports as well
* content provider changes, especially querying key rings by emailsThialfihar2010-06-061-26/+82
|