aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
| * keep track of the position the input stream for decryption, makes it ↵Thialfihar2010-05-173-5/+85
| | | | | | | | possible to give accurate progress information
| * default message/file compression settings added, also a setting for file ↵Thialfihar2010-05-169-21/+223
| | | | | | | | decryption to change the default when a file requires it
| * give key editing its own pass phrase mechanism, as the new cache won't work ↵Thialfihar2010-05-163-8/+33
| | | | | | | | there
| * honour the pass phrase cache TTL by running a timer and removing expired ↵Thialfihar2010-05-164-9/+55
| | | | | | | | cached pass phrases
| * unused imports removedThialfihar2010-05-151-2/+0
| |
| * added pass phrase cache to preferences, not used yet, but preference and ↵Thialfihar2010-05-159-67/+193
| | | | | | | | about menu item now show up in every activity
| * password cache introduced, not cleared yet.Thialfihar2010-05-1510-49/+129
| |
| * remove .pgp for filename guessing for decryptionThialfihar2010-05-141-1/+1
| |
| * values-* templates for hopefully upcoming German, Korean, Russian translationsThialfihar2010-05-133-0/+690
| |
| * replaced error and progress strings in APG.java with resource IDs as wellThialfihar2010-05-137-93/+143
| |
| * a lot of renaming of IDs, following a strict naming scheme again, moved most ↵Thialfihar2010-05-1334-415/+500
| | | | | | | | strings into string.xml in preparation for internationalization, APG.java still has to be changed to allow that, as it isn't Context aware in most methods
| * lifted version to 0.9.5 and cleared change logThialfihar2010-05-113-6/+2
| |
| * Log removal and suchThialfihar2010-05-113-9/+0
| |
| * brought change log up to dateThialfihar2010-05-111-1/+3
| |
| * setting the min SDK version to 1.5, it now should work for all Android ↵Thialfihar2010-05-111-1/+1
| | | | | | | | versions 1.5+
| * moved more resources to drawable for Android 1.5Thialfihar2010-05-117-0/+0
| |
| * trying to allow allow building for Android 1.5Thialfihar2010-05-117-0/+0
| |
| * trying to allow allow building for Android 1.5Thialfihar2010-05-1114-0/+0
| |
| * trying to allow allow building for Android 1.5Thialfihar2010-05-1114-0/+0
| |
| * trying to allow allow building for Android 1.5Thialfihar2010-05-117-0/+0
| |
| * trying to allow allow building for Android 1.5Thialfihar2010-05-1114-0/+0
| |
| * copied all resources from drawable-mdpi to drawable, which will allow ↵Thialfihar2010-05-1114-0/+0
| | | | | | | | building for Android 1.5 if the other directories get removed or ignored during build
| * small fix to be compatible with Android 1.5Thialfihar2010-05-111-0/+3
| |
| * use XML layout for pass phrase dialogs as well now, doing away with awkward ↵Thialfihar2010-05-113-37/+40
| | | | | | | | manual padding, important for Android 1.5 compatibility
| * fix a signature bug, which resulted in wrongly read signatures if there was ↵Thialfihar2010-05-112-15/+30
| | | | | | | | only one line
| * merged DecryptMessageActivity and DecryptFileActivity into one ↵Thialfihar2010-05-1111-901/+824
| | | | | | | | DecryptActivity as well
| * removal of old layoutsThialfihar2010-05-092-448/+0
| |
| * new EncryptActivity to handle message and file encryption all in oneThialfihar2010-05-0920-924/+1239
| |
| * minorThialfihar2010-05-091-1/+1
| |
| * added a button to encrypt to clipboard, change log and about window got ↵Thialfihar2010-05-098-65/+122
| | | | | | | | their own layout now with proper linkification
| * reset changelog for 0.9.4Thialfihar2010-05-041-4/+0
| |
| * lift version to 0.9.4Thialfihar2010-05-042-2/+2
| |
| * removed unnecessary importsThialfihar2010-05-042-2/+0
| |
| * added an option to delete files after encryption or decryption, also no ↵Thialfihar2010-05-048-7/+128
| | | | | | | | longer delete the output file if either fails
| * give decryption a moving progress bar for a data of unknown sizeThialfihar2010-05-041-15/+35
| |
| * close streams more consistently (outside of encrypt/decrypt), force a new ↵Thialfihar2010-05-044-8/+22
| | | | | | | | output filename guess if the ASCII armour checkbox state changes
| * use buffers for encryption, so large files work as well... also showing ↵Thialfihar2010-05-045-43/+41
| | | | | | | | | | | | encryption progress with better accuracy, which is especially useful for large encryptions Fixes issue 18.
| * check whether the hashed packet is non-null before using it, also checking ↵Thialfihar2010-05-041-11/+26
| | | | | | | | the unhashed ones in the same manner... not sure whether that's needed, but can't hurt? Fixes issue 17.
| * increased app version and cleared change log for 0.9.3Thialfihar2010-04-293-6/+2
| |
| * update signature layout even if select key was cancelledThialfihar2010-04-291-2/+2
| |
| * update signature layout even if select key was cancelledThialfihar2010-04-291-2/+2
| |
| * removed some useless importsThialfihar2010-04-292-2/+0
| |
| * use the app directory for default import/export file pathsThialfihar2010-04-292-4/+4
| |
| * updated changes dialogThialfihar2010-04-291-0/+1
| |
| * recognize RSA_SIGN and RSA_ENCRYPT keys correctly, which fixes the hushmail ↵Thialfihar2010-04-291-5/+14
| | | | | | | | problems
| * changed the option menu item orderThialfihar2010-04-291-4/+4
| |
| * updated changes dialogThialfihar2010-04-291-0/+1
| |
| * only allow asymmetric encryption or symmetric encryption of files, not both ↵Thialfihar2010-04-293-8/+29
| | | | | | | | like before
| * removed some useless importsThialfihar2010-04-293-3/+0
| |
| * put return values into the Id class as well, changed encrypt file layout to ↵Thialfihar2010-04-295-123/+163
| | | | | | | | use symmetric OR asymmetric again, layout and string adjustments