Skip to content
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

Update documentation for ACTION_GET_KEY #24

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -202,9 +202,20 @@ public class OpenPgpApi {
* If an Output stream has been defined the whole public key is returned.
* required extras:
* long EXTRA_KEY_ID
* or
* String EXTRA_USER_ID
*
* optional extras:
* String EXTRA_REQUEST_ASCII_ARMOR (request that the returned key is encoded in ASCII Armor)
* boolean EXTRA_REQUEST_ASCII_ARMOR (request that the returned key is encoded in ASCII Armor, default is false)
* boolean EXTRA_MINIMIZE (returns a minimized version of the key, default is false)
* String EXTRA_MINIMIZE_USER_ID
*
* The minimized version of a key includes:
* - the master key
* - the current best signing key (if any)
* - one encryption key (if any)
* - the user id that matches the EXTRA_MINIMIZE_USER_ID value, or the primary user id if none matches
* each with their most recent binding certificates
*/
public static final String ACTION_GET_KEY = "org.openintents.openpgp.action.GET_KEY";

Expand Down