More work on crypto consumers

This commit is contained in:
Dominik Schürmann
2013-07-01 23:19:53 +02:00
parent 36cc814e84
commit 202ccc2c36
14 changed files with 205 additions and 17 deletions

View File

@@ -184,7 +184,7 @@ public class CryptoService extends Service {
signatureSuccess, signatureUnknown);
// return over handler on client side
callback.onDecryptVerifySuccess(outputBytes, sigResult);
callback.onSuccess(outputBytes, sigResult);
} catch (Exception e) {
Log.e(Constants.TAG, "KeychainService, Exception!", e);
@@ -250,6 +250,13 @@ public class CryptoService extends Service {
checkAndEnqueue(r);
}
@Override
public void setup(boolean asciiArmor, boolean newKeyring, String newKeyringUserId)
throws RemoteException {
// TODO Auto-generated method stub
}
};
private final IServiceActivityCallback.Stub mBinderServiceActivity = new IServiceActivityCallback.Stub() {