Updated OpenPGP API (markdown)

Dominik Schürmann 2015-03-20 15:30:41 +01:00
parent b8b1ac9c9d
commit 3cdb0fa4be
1 changed files with 0 additions and 1 deletions

@ -69,7 +69,6 @@ Intent data = new Intent();
data.setAction(OpenPgpApi.ACTION_ENCRYPT);
data.putExtra(OpenPgpApi.EXTRA_USER_IDS, new String[]{"dominik@dominikschuermann.de"});
data.putExtra(OpenPgpApi.EXTRA_REQUEST_ASCII_ARMOR, true);
data.putExtra(OpenPgpApi.EXTRA_ACCOUNT_NAME, "Alice <alice@example.com>");
```
Define an ``InputStream`` currently holding the plaintext, and an ``OutputStream`` where you want the ciphertext to be written by OpenKeychain's remote service:
```java