aboutsummaryrefslogtreecommitdiffstats
path: root/OpenPGP-Keychain/src/org/sufficientlysecure/keychain/crypto_provider
diff options
context:
space:
mode:
authorDominik Schürmann <dominik@dominikschuermann.de>2013-05-28 22:48:42 +0200
committerDominik Schürmann <dominik@dominikschuermann.de>2013-05-28 22:48:42 +0200
commit215864a33ef2023e30a72f831ebea3a6c24ebbc1 (patch)
tree74912418a6d37c3e7af7d61b7cc45d587b4e575e /OpenPGP-Keychain/src/org/sufficientlysecure/keychain/crypto_provider
parentb221c0c9051d7dea697aff7b3167fca69eb1f4f8 (diff)
downloadopen-keychain-215864a33ef2023e30a72f831ebea3a6c24ebbc1.tar.gz
open-keychain-215864a33ef2023e30a72f831ebea3a6c24ebbc1.tar.bz2
open-keychain-215864a33ef2023e30a72f831ebea3a6c24ebbc1.zip
Process safe implementation of PassphraseCacheService, First test for crypto provider
Diffstat (limited to 'OpenPGP-Keychain/src/org/sufficientlysecure/keychain/crypto_provider')
-rw-r--r--OpenPGP-Keychain/src/org/sufficientlysecure/keychain/crypto_provider/CryptoService.java317
1 files changed, 60 insertions, 257 deletions
diff --git a/OpenPGP-Keychain/src/org/sufficientlysecure/keychain/crypto_provider/CryptoService.java b/OpenPGP-Keychain/src/org/sufficientlysecure/keychain/crypto_provider/CryptoService.java
index 584aa81ec..a407bc893 100644
--- a/OpenPGP-Keychain/src/org/sufficientlysecure/keychain/crypto_provider/CryptoService.java
+++ b/OpenPGP-Keychain/src/org/sufficientlysecure/keychain/crypto_provider/CryptoService.java
@@ -1,5 +1,5 @@
/*
- * Copyright (C) 2012 Dominik Schürmann <dominik@dominikschuermann.de>
+ * Copyright (C) 2013 Dominik Schürmann <dominik@dominikschuermann.de>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -18,27 +18,16 @@ package org.sufficientlysecure.keychain.crypto_provider;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
-import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
-import java.security.NoSuchAlgorithmException;
-import java.security.NoSuchProviderException;
-import java.security.SignatureException;
-
-import org.spongycastle.openpgp.PGPException;
import org.sufficientlysecure.keychain.Constants;
import org.sufficientlysecure.keychain.Id;
import org.sufficientlysecure.keychain.helper.PgpMain;
-import org.sufficientlysecure.keychain.helper.PgpMain.PgpGeneralException;
import org.sufficientlysecure.keychain.util.InputData;
import org.sufficientlysecure.keychain.util.Log;
import org.sufficientlysecure.keychain.R;
-import org.sufficientlysecure.keychain.service.IKeychainApiService;
import org.sufficientlysecure.keychain.service.KeychainIntentService;
import org.sufficientlysecure.keychain.service.PassphraseCacheService;
-import org.sufficientlysecure.keychain.service.handler.IKeychainDecryptHandler;
-import org.sufficientlysecure.keychain.service.handler.IKeychainEncryptHandler;
-import org.sufficientlysecure.keychain.service.handler.IKeychainGetDecryptionKeyIdHandler;
import com.android.crypto.CryptoError;
import com.android.crypto.ICryptoCallback;
@@ -59,13 +48,13 @@ public class CryptoService extends Service {
public void onCreate() {
super.onCreate();
mContext = this;
- Log.d(Constants.TAG, "KeychainApiService, onCreate()");
+ Log.d(Constants.TAG, "CryptoService, onCreate()");
}
@Override
public void onDestroy() {
super.onDestroy();
- Log.d(Constants.TAG, "KeychainApiService, onDestroy()");
+ Log.d(Constants.TAG, "CryptoService, onDestroy()");
}
@Override
@@ -73,60 +62,46 @@ public class CryptoService extends Service {
return mBinder;
}
- private synchronized void encryptAndSignSafe(byte[] inputBytes, String inputUri,
- boolean useAsciiArmor, int compression, long[] encryptionKeyIds,
- String encryptionPassphrase, int symmetricEncryptionAlgorithm, long signatureKeyId,
- int signatureHashAlgorithm, boolean signatureForceV3, String signaturePassphrase,
- IKeychainEncryptHandler handler) throws RemoteException {
-
+ private synchronized void decryptAndVerifySafe(byte[] inputBytes, ICryptoCallback callback)
+ throws RemoteException {
try {
-
// build InputData and write into OutputStream
InputStream inputStream = new ByteArrayInputStream(inputBytes);
long inputLength = inputBytes.length;
- InputData input = new InputData(inputStream, inputLength);
-
- OutputStream output = new ByteArrayOutputStream();
-
- PgpMain.encryptAndSign(mContext, null, input, output, useAsciiArmor, compression,
- encryptionKeyIds, encryptionPassphrase, symmetricEncryptionAlgorithm,
- signatureKeyId, signatureHashAlgorithm, signatureForceV3, signaturePassphrase);
+ InputData inputData = new InputData(inputStream, inputLength);
- output.close();
+ OutputStream outputStream = new ByteArrayOutputStream();
- // start activity from service, TOOD: Test!
- // Intent dialogIntent = new Intent(getBaseContext(), myActivity.class);
- // dialogIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
- // getApplication().startActivity(dialogIntent);
+ long secretKeyId = PgpMain.getDecryptionKeyId(mContext, inputStream);
+ if (secretKeyId == Id.key.none) {
+ throw new PgpMain.PgpGeneralException(getString(R.string.error_noSecretKeyFound));
+ }
- byte[] outputBytes = ((ByteArrayOutputStream) output).toByteArray();
+ Log.d(Constants.TAG, "secretKeyId " + secretKeyId);
- // return over handler on client side
- handler.onSuccess(outputBytes, null);
- } catch (Exception e) {
- Log.e(Constants.TAG, "KeychainService, Exception!", e);
+ String passphrase = PassphraseCacheService.getCachedPassphrase(mContext, secretKeyId);
- try {
- handler.onException(getExceptionId(e), e.getMessage());
- } catch (Exception t) {
- Log.e(Constants.TAG, "Error returning exception to client", t);
+ if (passphrase == null) {
+ Log.d(Constants.TAG, "No passphrase! Activity required!");
+ // No passphrase cached for this ciphertext! Intent required to cache
+ // passphrase!
+ Intent intent = new Intent(CryptoActivity.ACTION_CACHE_PASSPHRASE);
+ intent.putExtra(CryptoActivity.EXTRA_SECRET_KEY_ID, secretKeyId);
+ callback.onActivityRequired(intent);
+ return;
}
- }
- }
- private synchronized void decryptAndVerifySafe(byte[] inputBytes, String passphrase,
- boolean assumeSymmetric, IKeychainDecryptHandler handler) throws RemoteException {
-
- try {
- // build InputData and write into OutputStream
- InputStream inputStream = new ByteArrayInputStream(inputBytes);
- long inputLength = inputBytes.length;
- InputData inputData = new InputData(inputStream, inputLength);
-
- OutputStream outputStream = new ByteArrayOutputStream();
+ // if (signedOnly) {
+ // resultData = PgpMain.verifyText(this, this, inputData, outStream,
+ // lookupUnknownKey);
+ // } else {
+ // resultData = PgpMain.decryptAndVerify(this, this, inputData, outStream,
+ // PassphraseCacheService.getCachedPassphrase(this, secretKeyId),
+ // assumeSymmetricEncryption);
+ // }
Bundle outputBundle = PgpMain.decryptAndVerify(mContext, null, inputData, outputStream,
- passphrase, assumeSymmetric);
+ passphrase, false);
outputStream.close();
@@ -143,52 +118,16 @@ public class CryptoService extends Service {
boolean signatureUnknown = outputBundle
.getBoolean(KeychainIntentService.RESULT_SIGNATURE_UNKNOWN);
- // return over handler on client side
- handler.onSuccess(outputBytes, null, signature, signatureKeyId, signatureUserId,
+ CryptoSignatureResult sigResult = new CryptoSignatureResult(signatureUserId, signature,
signatureSuccess, signatureUnknown);
- } catch (Exception e) {
- Log.e(Constants.TAG, "KeychainService, Exception!", e);
-
- try {
- handler.onException(getExceptionId(e), e.getMessage());
- } catch (Exception t) {
- Log.e(Constants.TAG, "Error returning exception to client", t);
- }
- }
- }
-
- private synchronized void getDecryptionKeySafe(byte[] inputBytes, String inputUri,
- IKeychainGetDecryptionKeyIdHandler handler) {
-
- // TODO: implement inputUri
-
- try {
- InputStream inputStream = new ByteArrayInputStream(inputBytes);
-
- long secretKeyId = Id.key.none;
- boolean symmetric;
-
- try {
- secretKeyId = PgpMain.getDecryptionKeyId(CryptoService.this, inputStream);
- if (secretKeyId == Id.key.none) {
- throw new PgpGeneralException(getString(R.string.error_noSecretKeyFound));
- }
- symmetric = false;
- } catch (PgpMain.NoAsymmetricEncryptionException e) {
- secretKeyId = Id.key.symmetric;
- if (!PgpMain.hasSymmetricEncryption(CryptoService.this, inputStream)) {
- throw new PgpGeneralException(getString(R.string.error_noKnownEncryptionFound));
- }
- symmetric = true;
- }
-
- handler.onSuccess(secretKeyId, symmetric);
+ // return over handler on client side
+ callback.onDecryptVerifySuccess(outputBytes, sigResult);
} catch (Exception e) {
Log.e(Constants.TAG, "KeychainService, Exception!", e);
try {
- handler.onException(getExceptionId(e), e.getMessage());
+ callback.onError(new CryptoError(0, e.getMessage()));
} catch (Exception t) {
Log.e(Constants.TAG, "Error returning exception to client", t);
}
@@ -221,171 +160,35 @@ public class CryptoService extends Service {
@Override
public void decryptAndVerify(byte[] inputBytes, ICryptoCallback callback)
throws RemoteException {
-
- try {
- // build InputData and write into OutputStream
- InputStream inputStream = new ByteArrayInputStream(inputBytes);
- long inputLength = inputBytes.length;
- InputData inputData = new InputData(inputStream, inputLength);
-
- OutputStream outputStream = new ByteArrayOutputStream();
-
- // String passphrase = "";
-
- long secretKeyId = PgpMain.getDecryptionKeyId(mContext, inputStream);
- if (secretKeyId == Id.key.none) {
- throw new PgpMain.PgpGeneralException(
- getString(R.string.error_noSecretKeyFound));
- }
-
- String passphrase = PassphraseCacheService.getCachedPassphrase(mContext,
- secretKeyId);
-
- if (passphrase == null) {
- // No passphrase cached for this ciphertext! Intent required to cache
- // passphrase!
- Intent intent = new Intent(CryptoActivity.ACTION_CACHE_PASSPHRASE);
- intent.putExtra(CryptoActivity.EXTRA_SECRET_KEY_ID, secretKeyId);
- callback.onActivityRequired(intent);
- return;
- }
-
- // if (signedOnly) {
- // resultData = PgpMain.verifyText(this, this, inputData, outStream,
- // lookupUnknownKey);
- // } else {
- // resultData = PgpMain.decryptAndVerify(this, this, inputData, outStream,
- // PassphraseCacheService.getCachedPassphrase(this, secretKeyId),
- // assumeSymmetricEncryption);
- // }
-
- Bundle outputBundle = PgpMain.decryptAndVerify(mContext, null, inputData,
- outputStream, passphrase, false);
-
- outputStream.close();
-
- byte[] outputBytes = ((ByteArrayOutputStream) outputStream).toByteArray();
-
- // get signature informations from bundle
- boolean signature = outputBundle.getBoolean(KeychainIntentService.RESULT_SIGNATURE);
- long signatureKeyId = outputBundle
- .getLong(KeychainIntentService.RESULT_SIGNATURE_KEY_ID);
- String signatureUserId = outputBundle
- .getString(KeychainIntentService.RESULT_SIGNATURE_USER_ID);
- boolean signatureSuccess = outputBundle
- .getBoolean(KeychainIntentService.RESULT_SIGNATURE_SUCCESS);
- boolean signatureUnknown = outputBundle
- .getBoolean(KeychainIntentService.RESULT_SIGNATURE_UNKNOWN);
-
- CryptoSignatureResult sigResult = new CryptoSignatureResult(signatureUserId,
- signature, signatureSuccess, signatureUnknown);
-
- // return over handler on client side
- callback.onDecryptVerifySuccess(outputBytes, sigResult);
- // handler.onSuccess(outputBytes, null, signature, signatureKeyId, signatureUserId,
- // signatureSuccess, signatureUnknown);
- } catch (Exception e) {
- Log.e(Constants.TAG, "KeychainService, Exception!", e);
-
- try {
- callback.onError(new CryptoError(getExceptionId(e), e.getMessage()));
- } catch (Exception t) {
- Log.e(Constants.TAG, "Error returning exception to client", t);
- }
- }
-
+ decryptAndVerifySafe(inputBytes, callback);
}
- //
- // @Override
- // public void encryptAsymmetric(byte[] inputBytes, String inputUri, boolean useAsciiArmor,
- // int compression, long[] encryptionKeyIds, int symmetricEncryptionAlgorithm,
- // IKeychainEncryptHandler handler) throws RemoteException {
- //
- // encryptAndSignSafe(inputBytes, inputUri, useAsciiArmor, compression, encryptionKeyIds,
- // null, symmetricEncryptionAlgorithm, Id.key.none, 0, false, null, handler);
- // }
- //
- // @Override
- // public void encryptSymmetric(byte[] inputBytes, String inputUri, boolean useAsciiArmor,
- // int compression, String encryptionPassphrase, int symmetricEncryptionAlgorithm,
- // IKeychainEncryptHandler handler) throws RemoteException {
- //
- // encryptAndSignSafe(inputBytes, inputUri, useAsciiArmor, compression, null,
- // encryptionPassphrase, symmetricEncryptionAlgorithm, Id.key.none, 0, false,
- // null, handler);
- // }
- //
- // @Override
- // public void encryptAndSignAsymmetric(byte[] inputBytes, String inputUri,
- // boolean useAsciiArmor, int compression, long[] encryptionKeyIds,
- // int symmetricEncryptionAlgorithm, long signatureKeyId, int signatureHashAlgorithm,
- // boolean signatureForceV3, String signaturePassphrase,
- // IKeychainEncryptHandler handler) throws RemoteException {
- //
- // encryptAndSignSafe(inputBytes, inputUri, useAsciiArmor, compression, encryptionKeyIds,
- // null, symmetricEncryptionAlgorithm, signatureKeyId, signatureHashAlgorithm,
- // signatureForceV3, signaturePassphrase, handler);
- // }
- //
- // @Override
- // public void encryptAndSignSymmetric(byte[] inputBytes, String inputUri,
- // boolean useAsciiArmor, int compression, String encryptionPassphrase,
- // int symmetricEncryptionAlgorithm, long signatureKeyId, int signatureHashAlgorithm,
- // boolean signatureForceV3, String signaturePassphrase,
- // IKeychainEncryptHandler handler) throws RemoteException {
- //
- // encryptAndSignSafe(inputBytes, inputUri, useAsciiArmor, compression, null,
- // encryptionPassphrase, symmetricEncryptionAlgorithm, signatureKeyId,
- // signatureHashAlgorithm, signatureForceV3, signaturePassphrase, handler);
- // }
- //
- // @Override
- // public void decryptAndVerifyAsymmetric(byte[] inputBytes, String inputUri,
- // String keyPassphrase, IKeychainDecryptHandler handler) throws RemoteException {
- //
- // decryptAndVerifySafe(inputBytes, inputUri, keyPassphrase, false, handler);
- // }
- //
- // @Override
- // public void decryptAndVerifySymmetric(byte[] inputBytes, String inputUri,
- // String encryptionPassphrase, IKeychainDecryptHandler handler)
- // throws RemoteException {
- //
- // decryptAndVerifySafe(inputBytes, inputUri, encryptionPassphrase, true, handler);
- // }
- //
- // @Override
- // public void getDecryptionKeyId(byte[] inputBytes, String inputUri,
- // IKeychainGetDecryptionKeyIdHandler handler) throws RemoteException {
- //
- // getDecryptionKeySafe(inputBytes, inputUri, handler);
- // }
};
- /**
- * As we can not throw an exception through Android RPC, we assign identifiers to the exception
- * types.
- *
- * @param e
- * @return
- */
- private int getExceptionId(Exception e) {
- if (e instanceof NoSuchProviderException) {
- return 0;
- } else if (e instanceof NoSuchAlgorithmException) {
- return 1;
- } else if (e instanceof SignatureException) {
- return 2;
- } else if (e instanceof IOException) {
- return 3;
- } else if (e instanceof PgpGeneralException) {
- return 4;
- } else if (e instanceof PGPException) {
- return 5;
- } else {
- return -1;
- }
- }
+ // /**
+ // * As we can not throw an exception through Android RPC, we assign identifiers to the
+ // exception
+ // * types.
+ // *
+ // * @param e
+ // * @return
+ // */
+ // private int getExceptionId(Exception e) {
+ // if (e instanceof NoSuchProviderException) {
+ // return 0;
+ // } else if (e instanceof NoSuchAlgorithmException) {
+ // return 1;
+ // } else if (e instanceof SignatureException) {
+ // return 2;
+ // } else if (e instanceof IOException) {
+ // return 3;
+ // } else if (e instanceof PgpGeneralException) {
+ // return 4;
+ // } else if (e instanceof PGPException) {
+ // return 5;
+ // } else {
+ // return -1;
+ // }
+ // }
}