aboutsummaryrefslogtreecommitdiffstats
path: root/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/remote/OpenPgpService.java
Commit message (Collapse)AuthorAgeFilesLines
* API 7Dominik Schürmann2015-03-101-47/+121
|
* API: If signature key is known return pi to show keyDominik Schürmann2015-03-091-73/+72
|
* Fix colors for remote activityDominik Schürmann2015-03-091-1/+1
|
* Remove advanced preferences, move compression as menu item in encrypt ↵Dominik Schürmann2015-03-051-5/+7
| | | | activites, select hash and encryption algo based on hardcoded preferred lists
* Use no compression in API for nowDominik Schürmann2015-03-051-1/+2
|
* Better selection of preferred algorithmDominik Schürmann2015-03-051-4/+5
|
* rewrite PgpSignEncrypt data flowVincent Breitmoser2015-02-011-90/+27
| | | | | | | - introduce high-level SignEncryptOperation for uri to uri signing/encryption - use SignEncryptParcel for high-level operation parameters - use PgpSignEncryptInput plus streams for low-level operation parameters - get rid of all sign/encrypt logic in KeychainIntentService
* Close FileDescriptors and input, output streams when possibleDominik Schürmann2015-01-291-285/+335
|
* Support verification of detached signaturesDominik Schürmann2015-01-271-6/+10
|
* Merge branch 'development' into detached-sigs-apiDominik Schürmann2015-01-271-0/+5
|\ | | | | | | | | Conflicts: OpenKeychain/src/main/java/org/sufficientlysecure/keychain/remote/OpenPgpService.java
| * backend support for charset in ascii-armored streamsVincent Breitmoser2015-01-271-0/+6
| |
* | Fixes for detached signaturesDominik Schürmann2015-01-261-2/+10
| |
* | Merge branch 'development' into detached-sigs-apiDominik Schürmann2015-01-261-3/+3
|\| | | | | | | | | | | Conflicts: OpenKeychain/src/main/java/org/sufficientlysecure/keychain/remote/OpenPgpService.java OpenKeychain/src/main/java/org/sufficientlysecure/keychain/service/KeychainIntentService.java
| * lift language level to java 7, and some code cleanupVincent Breitmoser2015-01-251-27/+30
| |
* | Experimental API support for detached signatures (not tested)Dominik Schürmann2015-01-081-22/+25
|/
* Fail on unknown key ids on API, Key item design consistency for APIDominik Schürmann2014-10-261-0/+1
|
* make PgpEncryptSign and PgpDecryptVerify subclasses of BaseOperationVincent Breitmoser2014-10-131-29/+3
|
* move around package structure a bitVincent Breitmoser2014-10-101-3/+3
|
* Better handling if no api key is selectedDominik Schürmann2014-10-091-3/+10
|
* Replace many PgpGeneralExceptions with PgpKeyNotFoundExceptionDominik Schürmann2014-10-091-5/+12
|
* Revert "Replace PgpGeneralException with NotFoundException where appropriate"Dominik Schürmann2014-10-091-12/+11
| | | | This reverts commit 49b4ff63122988dc1587844e6b4b2ee5d0855385.
* Replace PgpGeneralException with NotFoundException where appropriateDominik Schürmann2014-10-091-11/+12
|
* one more fix for getting the right subkey in api signingVincent Breitmoser2014-10-031-19/+19
|
* make getSignId a secret key operation, and respect unavailable keysVincent Breitmoser2014-10-021-2/+2
| | | | This one should remedy #811, but waiting for a test
* check key ids when used from apiDominik Schürmann2014-10-011-6/+8
|
* request passphrase for correct subkey in OpenPgpServiceVincent Breitmoser2014-09-301-7/+8
| | | | fixes #811, hopefully
* Fix NfcActivity task stack problemDominik Schürmann2014-09-291-2/+0
|
* Merge openpgp-card lib into OpenKeychain, it was already depending on OK, no ↵Dominik Schürmann2014-09-241-2/+1
| | | | need to separate
* Yubikey text decryption workingDominik Schürmann2014-09-241-3/+2
|
* Yubikey decryptionDominik Schürmann2014-09-241-2/+3
|
* passphrasecache: cache by master key, introduce preference for cache by subkeyVincent Breitmoser2014-09-231-39/+31
|
* Use key icons in import, prettify itemsDominik Schürmann2014-09-181-4/+12
|
* Fixes for nfc decryptDominik Schürmann2014-09-181-4/+5
|
* Fix sign via APIDominik Schürmann2014-09-181-2/+15
|
* PassphraseDialogActivity usage in Remote APIDominik Schürmann2014-09-171-4/+4
|
* Work on new result handling (WIP)Dominik Schürmann2014-09-171-78/+114
|
* work on OperationResultParcelVincent Breitmoser2014-09-141-2/+1
|
* add SignEncryptResult parcel (probably break stuff)Vincent Breitmoser2014-09-141-37/+44
|
* move IS_REVOKED table prefix to the right placesVincent Breitmoser2014-09-131-2/+3
| | | | Fixes #849
* working version of DecryptVerifyResultVincent Breitmoser2014-09-131-26/+17
|
* introduce OperationResultParcel for PgpDecryptVerify operations (WIP)Vincent Breitmoser2014-09-131-4/+4
|
* Unify package nameDominik Schürmann2014-09-081-1/+1
|
* Work on Yubikey decryptionDominik Schürmann2014-09-081-6/+7
|
* Fix signature timestamp in APIDominik Schürmann2014-09-081-3/+17
|
* Prepare Yubikey decryptionDominik Schürmann2014-09-081-4/+30
|
* Fix yubikey for signAndEncrypt via APIDominik Schürmann2014-09-071-0/+6
|
* Prepare API for OpenPgpSignatureResult extensionsDominik Schürmann2014-08-311-4/+12
|
* Merge branch 'master' into yubikeyDominik Schürmann2014-08-281-71/+79
|\ | | | | | | | | | | | | Conflicts: OpenKeychain/src/main/java/org/sufficientlysecure/keychain/helper/Preferences.java OpenKeychain/src/main/java/org/sufficientlysecure/keychain/pgp/PgpSignEncrypt.java OpenKeychain/src/main/java/org/sufficientlysecure/keychain/remote/OpenPgpService.java
| * API: Fix re-seletion of keys on default accountDominik Schürmann2014-08-231-7/+13
| |
| * Fixes and temporary fixes for returning resultsDominik Schürmann2014-08-201-2/+2
| |