aboutsummaryrefslogtreecommitdiffstats
path: root/OpenKeychain/src/main/java/org/sufficientlysecure/keychain/operations/results/OperationResult.java
Commit message (Collapse)AuthorAgeFilesLines
* fixed multi-deletion bug, moved logic into DeleteKeyDialogActivityAdithya Abraham Philip2015-07-151-1/+1
|
* upload only public key in revocationAdithya Abraham Philip2015-07-131-0/+2
|
* use only one DeleteDialogActivityAdithya Abraham Philip2015-07-131-1/+1
|
* implemented revocation on deletionAdithya Abraham Philip2015-07-131-0/+7
|
* fix symmetric passphrase caching (fixes #1401)Vincent Breitmoser2015-07-081-0/+1
|
* addition of subkeys for divert-to-card primary keys is not supportedVincent Breitmoser2015-07-081-0/+1
|
* better handling of divert-to-card keys for subkey modificationsVincent Breitmoser2015-07-081-0/+1
|
* nicer error msg if input data cannot be readVincent Breitmoser2015-07-061-0/+1
|
* ensuring code style is preservedAdithya Abraham Philip2015-07-031-1/+1
|
* added OperationResult support to upload to keyserverAdithya Abraham Philip2015-07-031-0/+4
|
* Change PIN and Admin PIN after move to key operationDominik Schürmann2015-07-021-0/+2
|
* migrated Keybase verificationAdithya Abraham Philip2015-06-271-1/+13
|
* implement deletion of filesVincent Breitmoser2015-06-231-1/+1
|
* more stable nullable behavior in OperationLogVincent Breitmoser2015-06-181-9/+21
|
* return actual last log entry, including from sublogentryparcelsVincent Breitmoser2015-06-171-1/+5
|
* prevent keybase key replacing keyserver keyAdithya Abraham Philip2015-05-311-0/+1
|
* better error handling for bad encrypted data checksumVincent Breitmoser2015-05-301-0/+1
|
* warn on signature earlier than key creation, err on significantly earlierVincent Breitmoser2015-05-281-0/+1
|
* don't show allowed key list if no key exists, and some minor ↵Vincent Breitmoser2015-05-281-1/+1
| | | | PgpDecryptVerify changes
* check fingerprint length after scanning qr codeVincent Breitmoser2015-05-171-1/+2
| | | | Fixes #1281
* apply promote operation to specific subkeys present on yubikey onlyVincent Breitmoser2015-05-171-0/+3
|
* Add check for exporting two keys to same smart card slot.Joey Castillo2015-05-131-0/+2
|
* Bugfixes and changes based on feedbackJoey Castillo2015-05-131-5/+3
|
* Moving keytocard process into PgpKeyOperation.Joey Castillo2015-05-131-0/+3
|
* Moved checks from fragment to operation, impoved logging.Joey Castillo2015-05-121-0/+5
|
* Externalize Parcelable cachingDominik Schürmann2015-04-101-59/+11
|
* fix Encrypt* with RequiredInputParcelVincent Breitmoser2015-03-301-1/+0
|
* actually promote to divert, pass yubikey's AIDVincent Breitmoser2015-03-221-1/+0
|
* Merge remote-tracking branch 'origin/development' into v/crypto-input-parcelVincent Breitmoser2015-03-211-2/+2
|\ | | | | | | | | | | Conflicts: OpenKeychain/src/main/java/org/sufficientlysecure/keychain/operations/results/OperationResult.java OpenKeychain/src/main/java/org/sufficientlysecure/keychain/remote/OpenPgpService.java
| * Reworked Notify classManoj Khanna2015-03-201-13/+13
| |
* | more data in RequiredInputParcel, OperationResult notificationsVincent Breitmoser2015-03-211-7/+15
| | | | | | | | | | - pass both masterkeyid and subkeyid though RequiredInputParcel parcel - fix numeric vales in OperationResult.createNotify()
* | add edit key unit test for no-opVincent Breitmoser2015-03-201-0/+1
| |
* | fix unit tests (for real)Vincent Breitmoser2015-03-201-1/+3
| |
* | support yubikeys in (some) edit key operationsVincent Breitmoser2015-03-201-1/+2
| |
* | yubikey certifications!Vincent Breitmoser2015-03-181-1/+1
|/
* add support for certification of user attributesVincent Breitmoser2015-03-081-2/+2
|
* Check for insecure hash and symmetric encryption algos on decryptDominik Schürmann2015-03-051-0/+2
|
* Merge branch 'development' of https://github.com/adithyaphilip/open-keychain ↵Dominik Schürmann2015-03-041-0/+7
|\ | | | | | | | | | | | | into adithyaphilip-development Conflicts: OpenKeychain/src/main/res/values/strings.xml
| * added logging, notify for log exportAdithya Abraham Philip2015-03-011-0/+7
| |
* | Cleanup for styleMorgan Gangwere2015-03-031-13/+6
| | | | | | | | Some nitpicks were had. Also, change the null UUID to a constant.
* | Fix root cause of #1077Morgan Gangwere2015-03-031-6/+70
|/ | | | | | | | | | | | | | | | | When importing lots of keys, lots of messages about the status of keys is generated, including some debug slime and general fluff that isn't really needed a lot of the time. As a result, a serious bug can come along after key imports or certain operations which cause a log to become parceled. This commit implements a pool to "dehydrate" logs into: they are placed into the pool (a ConcurrentHashMap) and a UUID assigned to them, which is parceled along. When the OperationResult is un-parceled, it reads in the appropriate UUID bits and rehydrates the appropriate log. In order to avoid any memory leaks, the log pool removes a reference to the log itself, allowing the log to die a natural death at the hands of the GC..
* Merge keybase-proof branchDominik Schürmann2015-02-271-0/+9
|\
| * Moved from WebView to Spannables, some proof cleanup tooTim Bray2014-11-071-0/+9
| |
* | determine correct filesize during decryption from LiteralData packetVincent Breitmoser2015-02-171-0/+1
| |
* | rewrite PgpSignEncrypt data flowVincent Breitmoser2015-02-011-29/+36
| | | | | | | | | | | | | | - 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
* | prevent recursive consolidateVincent Breitmoser2015-01-311-0/+1
| |
* | Merge remote-tracking branch 'origin/t/snackbar' into developmentDominik Schürmann2015-01-291-38/+29
|\ \ | | | | | | | | | | | | Conflicts: OpenKeychain/build.gradle
| * | use Notify helper everywhere, replace supertoasts with snackbar libraryVincent Breitmoser2015-01-191-38/+29
| | |
* | | backend support for charset in ascii-armored streamsVincent Breitmoser2015-01-271-0/+1
| | |
* | | move last parts of import logic from kis into operationVincent Breitmoser2015-01-261-0/+1
| | |