From 3cdb0fa4be72e89cf98d4c2c4feae75dcd985f1b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dominik=20Sch=C3=BCrmann?= Date: Fri, 20 Mar 2015 15:30:41 +0100 Subject: [PATCH] Updated OpenPGP API (markdown) --- OpenPGP-API.md | 1 - 1 file changed, 1 deletion(-) 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