diff --git a/OpenPGP-API.md b/OpenPGP-API.md index 57797cf..5e94789 100644 --- a/OpenPGP-API.md +++ b/OpenPGP-API.md @@ -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 "); ``` Define an ``InputStream`` currently holding the plaintext, and an ``OutputStream`` where you want the ciphertext to be written by OpenKeychain's remote service: ```java