New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix OpenPgpApi extra type confusion #960
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
msfjarvis
approved these changes
Jul 23, 2020
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Allow me a moment while I tear my hair out at this idiocy.
msfjarvis
added a commit
to msfjarvis/Android-Password-Store
that referenced
this pull request
Jul 23, 2020
* develop: Fix OpenPgpApi extra type confusion (android-password-store#960) Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
msfjarvis
pushed a commit
to msfjarvis/Android-Password-Store
that referenced
this pull request
Jul 23, 2020
(cherry picked from commit da16759)
msfjarvis
added a commit
to msfjarvis/Android-Password-Store
that referenced
this pull request
Jul 23, 2020
* origin/release: build: prepare next development version build: bump version Prepare release 1.10.1 Add CHANGELOG entries for 1.10.1 (android-password-store#961) Wire in fallback key selection flow (android-password-store#958) Fix OpenPgpApi extra type confusion (android-password-store#960) Fix a crash when parsing long key IDs (android-password-store#959) Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
msfjarvis
added a commit
to msfjarvis/Android-Password-Store
that referenced
this pull request
Jul 23, 2020
* origin/release: build: prepare next development version build: bump version Prepare release 1.10.1 Add CHANGELOG entries for 1.10.1 (android-password-store#961) Wire in fallback key selection flow (android-password-store#958) Fix OpenPgpApi extra type confusion (android-password-store#960) Fix a crash when parsing long key IDs (android-password-store#959) Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
msfjarvis
added a commit
to msfjarvis/Android-Password-Store
that referenced
this pull request
Jul 26, 2020
* develop: Properly handle files without passwords (android-password-store#969) Expand OTP and PasswordEntry tests (android-password-store#968) README: clarify build types (android-password-store#966) build: prepare next development version build: bump version Prepare release 1.10.1 Add CHANGELOG entries for 1.10.1 (android-password-store#961) Wire in fallback key selection flow (android-password-store#958) Fix OpenPgpApi extra type confusion (android-password-store#960) Fix a crash when parsing long key IDs (android-password-store#959) Add CHANGELOG entries for 1.10.1 (android-password-store#961) Wire in fallback key selection flow (android-password-store#958) Fix OpenPgpApi extra type confusion (android-password-store#960) Fix a crash when parsing long key IDs (android-password-store#959) Allow Autofill on custom views with Autofill hints (android-password-store#946) Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
msfjarvis
added a commit
that referenced
this pull request
Jul 26, 2020
* develop: (28 commits) Allow creating nested directories CHANGELOG: update Show parent path on all types github: upload test reports on failure build: update APK cruft exclusion list Properly handle files without passwords (#969) Expand OTP and PasswordEntry tests (#968) README: clarify build types (#966) build: prepare next development version build: bump version Prepare release 1.10.1 Add CHANGELOG entries for 1.10.1 (#961) Wire in fallback key selection flow (#958) Fix OpenPgpApi extra type confusion (#960) Fix a crash when parsing long key IDs (#959) Add CHANGELOG entries for 1.10.1 (#961) Wire in fallback key selection flow (#958) Fix OpenPgpApi extra type confusion (#960) Fix a crash when parsing long key IDs (#959) Allow Autofill on custom views with Autofill hints (#946) ... Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
msfjarvis
added a commit
that referenced
this pull request
Jul 27, 2020
* develop: Allow creating nested directories CHANGELOG: update Show parent path on all types github: upload test reports on failure build: update APK cruft exclusion list Properly handle files without passwords (#969) Expand OTP and PasswordEntry tests (#968) build: prepare next development version build: bump version Prepare release 1.10.1 Add CHANGELOG entries for 1.10.1 (#961) Wire in fallback key selection flow (#958) Fix OpenPgpApi extra type confusion (#960) Fix a crash when parsing long key IDs (#959)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Array<Long>
andLongArray
are distinct types and the former is being passed to Java as aSerializable
rather than aLong[]
. With this change, encrypting to fingerprints and long key IDs of master keys now works.Note that providing the key ID of an encryption subkey does not seem to be supported by OpenKeychain.