Fix yubikey for signAndEncrypt via API

This commit is contained in:
Dominik Schürmann 2014-09-07 23:19:55 +02:00
parent e6e70ec7d9
commit fd7f187364

View File

@ -354,6 +354,12 @@ public class OpenPgpService extends RemoteService {
throw new Exception(getString(R.string.error_wrong_passphrase)); throw new Exception(getString(R.string.error_wrong_passphrase));
} catch (PgpSignEncrypt.NoSigningKeyException e) { } catch (PgpSignEncrypt.NoSigningKeyException e) {
throw new Exception(getString(R.string.error_no_signature_key)); throw new Exception(getString(R.string.error_no_signature_key));
} catch (PgpSignEncrypt.NeedNfcDataException e) {
// return PendingIntent to execute NFC activity
// pass through the signature creation timestamp to be used again on second execution
// of PgpSignEncrypt when we have the signed hash!
data.putExtra(OpenPgpApi.EXTRA_NFC_SIG_CREATION_TIMESTAMP, e.mCreationTimestamp.getTime());
return getNfcIntent(data, e.mHashToSign, e.mHashAlgo);
} }
} finally { } finally {
is.close(); is.close();