decrypt into message not ciphertext EditText

This commit is contained in:
Dominik Schürmann 2014-02-17 19:08:24 +01:00
parent f3bbd34482
commit 89d6dcc996

View file

@ -231,7 +231,7 @@ public class OpenPgpProviderActivity extends Activity {
final ByteArrayOutputStream os = new ByteArrayOutputStream();
OpenPgpApi api = new OpenPgpApi(this, mServiceConnection.getService());
api.decryptAndVerify(params, is, os, new MyCallback(true, os, REQUEST_CODE_DECRYPT_AND_VERIFY));
api.decryptAndVerify(params, is, os, new MyCallback(false, os, REQUEST_CODE_DECRYPT_AND_VERIFY));
}
@Override