aboutsummaryrefslogtreecommitdiffstats
path: root/src/org/thialfihar/android/apg/KeyServerQueryActivity.java
Commit message (Collapse)AuthorAgeFilesLines
* renaming whole package to org.apg to simplifiy nameDominik2012-03-091-292/+0
|
* merged senecasos repoDominik2012-03-091-6/+6
|\
| * -implementation of "--send-key"senecaso2011-10-171-7/+7
| | | | | | | | -implementation of "--sign-key" -partial implementation of exchanging/verifying keys via QR Code
* | @Override refactoring, some explicit casting addedOliver Runge2011-09-171-7/+2
|/
* show key fingerprint in key listThialfihar2010-12-251-1/+1
| | | | | Fixes issue 76
* moved some Intent extra constants into more appropriate places, some basic ↵Thialfihar2010-09-111-1/+1
| | | | preparations to test thread-pausing during decryption/encryption to deal with certain situations, mainly an unknown signature key
* integrated key server look-up into decrypt Activity, allowing to touch an ↵Thialfihar2010-08-181-8/+15
| | | | | | | | unkown signature to import the key Update issue 39 added: <string name="unknownSignatureKeyTouchToLookUp">Unknown signature, touch to look up key.</string>
* added a context menu item to update public keys via key server, adding a key ↵Thialfihar2010-08-181-1/+17
| | | | | | | | 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-171-1/+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.
* gave HKP server proper error handling, going through all IPs of a pool until ↵Thialfihar2010-08-171-8/+11
| | | | | | | a response is received, reporting "too many responses", "no keys found", "insufficient query" correctly Update issue 9 Proper error handling added.
* added initial support for HKP key servers, allowing searching and key importThialfihar2010-08-171-0/+246
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.