Conversations/src/eu/siacs/conversations/crypto/PgpEngine.java

172 lines
6.0 KiB
Java
Raw Normal View History

2014-02-28 12:46:01 -05:00
package eu.siacs.conversations.crypto;
2014-02-27 18:22:56 -05:00
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.InputStream;
import org.openintents.openpgp.OpenPgpError;
import org.openintents.openpgp.OpenPgpSignatureResult;
import org.openintents.openpgp.util.OpenPgpApi;
2014-04-03 11:39:57 -04:00
import eu.siacs.conversations.entities.Account;
2014-02-27 18:22:56 -05:00
import android.app.PendingIntent;
2014-03-02 23:01:02 -05:00
import android.content.Intent;
2014-04-03 11:39:57 -04:00
import android.util.Log;
2014-02-27 18:22:56 -05:00
public class PgpEngine {
private OpenPgpApi api;
public PgpEngine(OpenPgpApi api) {
this.api = api;
}
2014-04-03 11:39:57 -04:00
public String decrypt(Account account, String message) throws UserInputRequiredException,
2014-02-27 18:22:56 -05:00
OpenPgpException {
2014-03-02 23:01:02 -05:00
Intent params = new Intent();
params.setAction(OpenPgpApi.ACTION_DECRYPT_VERIFY);
2014-04-03 11:39:57 -04:00
params.putExtra(OpenPgpApi.EXTRA_ACCOUNT_NAME, account.getJid());
2014-02-27 18:22:56 -05:00
InputStream is = new ByteArrayInputStream(message.getBytes());
ByteArrayOutputStream os = new ByteArrayOutputStream();
2014-03-02 23:01:02 -05:00
Intent result = api.executeApi(params, is, os);
2014-04-03 11:39:57 -04:00
switch (result.getIntExtra(OpenPgpApi.RESULT_CODE, OpenPgpApi.RESULT_CODE_ERROR)) {
2014-03-02 23:01:02 -05:00
case OpenPgpApi.RESULT_CODE_SUCCESS:
2014-02-27 18:22:56 -05:00
return os.toString();
2014-03-02 23:01:02 -05:00
case OpenPgpApi.RESULT_CODE_USER_INTERACTION_REQUIRED:
throw new UserInputRequiredException((PendingIntent) result.getParcelableExtra(OpenPgpApi.RESULT_INTENT));
case OpenPgpApi.RESULT_CODE_ERROR:
2014-02-27 18:22:56 -05:00
throw new OpenPgpException(
2014-03-06 14:18:34 -05:00
(OpenPgpError) result.getParcelableExtra(OpenPgpApi.RESULT_ERROR));
2014-02-27 18:22:56 -05:00
default:
return null;
}
}
2014-04-03 11:39:57 -04:00
public String encrypt(Account account, long keyId, String message) throws UserInputRequiredException, OpenPgpException {
Log.d("xmppService","called to pgpengine::encrypt");
2014-03-06 13:59:56 -05:00
long[] keys = {keyId};
2014-03-02 23:01:02 -05:00
Intent params = new Intent();
params.setAction(OpenPgpApi.ACTION_ENCRYPT);
params.putExtra(OpenPgpApi.EXTRA_KEY_IDS,keys);
params.putExtra(OpenPgpApi.EXTRA_REQUEST_ASCII_ARMOR, true);
2014-04-03 11:39:57 -04:00
params.putExtra(OpenPgpApi.EXTRA_ACCOUNT_NAME, account.getJid());
2014-03-02 23:01:02 -05:00
2014-02-27 18:22:56 -05:00
InputStream is = new ByteArrayInputStream(message.getBytes());
ByteArrayOutputStream os = new ByteArrayOutputStream();
2014-03-02 23:01:02 -05:00
Intent result = api.executeApi(params, is, os);
2014-04-03 11:39:57 -04:00
switch (result.getIntExtra(OpenPgpApi.RESULT_CODE, OpenPgpApi.RESULT_CODE_ERROR)) {
case OpenPgpApi.RESULT_CODE_SUCCESS:
StringBuilder encryptedMessageBody = new StringBuilder();
String[] lines = os.toString().split("\n");
for (int i = 3; i < lines.length - 1; ++i) {
encryptedMessageBody.append(lines[i].trim());
}
Log.d("xmppService","encrpyted message: "+encryptedMessageBody.toString());
return encryptedMessageBody.toString();
case OpenPgpApi.RESULT_CODE_USER_INTERACTION_REQUIRED:
Log.d("xmppService","user input required");
throw new UserInputRequiredException((PendingIntent) result.getParcelableExtra(OpenPgpApi.RESULT_INTENT));
case OpenPgpApi.RESULT_CODE_ERROR:
OpenPgpError error = (OpenPgpError) result.getParcelableExtra(OpenPgpApi.RESULT_ERROR);
throw new OpenPgpException(error);
default:
return null;
2014-02-27 18:22:56 -05:00
}
}
2014-04-03 11:39:57 -04:00
public long fetchKeyId(Account account, String status, String signature)
2014-02-27 18:22:56 -05:00
throws OpenPgpException {
2014-03-13 12:29:22 -04:00
if ((signature==null)||(api==null)) {
2014-03-07 18:31:29 -05:00
return 0;
}
if (status==null) {
status="";
}
2014-02-27 18:22:56 -05:00
StringBuilder pgpSig = new StringBuilder();
pgpSig.append("-----BEGIN PGP SIGNED MESSAGE-----");
pgpSig.append('\n');
pgpSig.append('\n');
pgpSig.append(status);
pgpSig.append('\n');
pgpSig.append("-----BEGIN PGP SIGNATURE-----");
pgpSig.append('\n');
pgpSig.append('\n');
pgpSig.append(signature.replace("\n", "").trim());
pgpSig.append('\n');
pgpSig.append("-----END PGP SIGNATURE-----");
2014-03-02 23:01:02 -05:00
Intent params = new Intent();
params.setAction(OpenPgpApi.ACTION_DECRYPT_VERIFY);
params.putExtra(OpenPgpApi.EXTRA_REQUEST_ASCII_ARMOR, true);
2014-02-27 18:22:56 -05:00
InputStream is = new ByteArrayInputStream(pgpSig.toString().getBytes());
ByteArrayOutputStream os = new ByteArrayOutputStream();
2014-03-02 23:01:02 -05:00
Intent result = api.executeApi(params, is, os);
2014-04-03 11:39:57 -04:00
switch (result.getIntExtra(OpenPgpApi.RESULT_CODE, OpenPgpApi.RESULT_CODE_ERROR)) {
2014-03-02 23:01:02 -05:00
case OpenPgpApi.RESULT_CODE_SUCCESS:
OpenPgpSignatureResult sigResult
= result.getParcelableExtra(OpenPgpApi.RESULT_SIGNATURE);
2014-03-07 18:31:29 -05:00
if (sigResult==null) {
return 0;
} else {
return sigResult.getKeyId();
}
2014-03-02 23:01:02 -05:00
case OpenPgpApi.RESULT_CODE_USER_INTERACTION_REQUIRED:
2014-02-27 18:22:56 -05:00
break;
2014-03-02 23:01:02 -05:00
case OpenPgpApi.RESULT_CODE_ERROR:
2014-02-27 18:22:56 -05:00
throw new OpenPgpException(
2014-03-06 14:18:34 -05:00
(OpenPgpError) result.getParcelableExtra(OpenPgpApi.RESULT_ERROR));
2014-02-27 18:22:56 -05:00
}
return 0;
}
2014-04-25 17:14:43 -04:00
public String generateSignature(Account account, String status)
2014-02-27 18:22:56 -05:00
throws UserInputRequiredException {
2014-03-02 23:01:02 -05:00
Intent params = new Intent();
params.putExtra(OpenPgpApi.EXTRA_REQUEST_ASCII_ARMOR, true);
params.setAction(OpenPgpApi.ACTION_SIGN);
2014-04-25 17:14:43 -04:00
params.putExtra(OpenPgpApi.EXTRA_ACCOUNT_NAME, account.getJid());
2014-02-27 18:22:56 -05:00
InputStream is = new ByteArrayInputStream(status.getBytes());
ByteArrayOutputStream os = new ByteArrayOutputStream();
2014-03-02 23:01:02 -05:00
Intent result = api.executeApi(params, is, os);
2014-02-27 18:22:56 -05:00
StringBuilder signatureBuilder = new StringBuilder();
2014-03-02 23:01:02 -05:00
switch (result.getIntExtra(OpenPgpApi.RESULT_CODE, 0)) {
case OpenPgpApi.RESULT_CODE_SUCCESS:
2014-02-27 18:22:56 -05:00
String[] lines = os.toString().split("\n");
for (int i = 7; i < lines.length - 1; ++i) {
signatureBuilder.append(lines[i].trim());
}
break;
2014-03-02 23:01:02 -05:00
case OpenPgpApi.RESULT_CODE_USER_INTERACTION_REQUIRED:
throw new UserInputRequiredException((PendingIntent) result.getParcelableExtra(OpenPgpApi.RESULT_INTENT));
case OpenPgpApi.RESULT_CODE_ERROR:
2014-02-27 18:22:56 -05:00
break;
}
return signatureBuilder.toString();
}
public class UserInputRequiredException extends Exception {
private static final long serialVersionUID = -6913480043269132016L;
private PendingIntent pi;
public UserInputRequiredException(PendingIntent pi) {
this.pi = pi;
}
public PendingIntent getPendingIntent() {
return this.pi;
}
}
public class OpenPgpException extends Exception {
private static final long serialVersionUID = -7324789703473056077L;
private OpenPgpError error;
public OpenPgpException(OpenPgpError openPgpError) {
this.error = openPgpError;
}
public OpenPgpError getOpenPgpError() {
return this.error;
}
}
}