mirror of
https://github.com/moparisthebest/open-keychain
synced 2024-11-27 03:02:15 -05:00
Fix API RESULT_TYPE
This commit is contained in:
parent
9e668eadcb
commit
ebf9bb3a63
@ -571,15 +571,14 @@ public class OpenPgpService extends RemoteService {
|
|||||||
}
|
}
|
||||||
} else if (pgpResult.success()) {
|
} else if (pgpResult.success()) {
|
||||||
Intent result = new Intent();
|
Intent result = new Intent();
|
||||||
int resultType = OpenPgpApi.RESULT_TYPE_UNENCRYPTED_UNSIGNED;
|
|
||||||
|
|
||||||
OpenPgpSignatureResult signatureResult = pgpResult.getSignatureResult();
|
OpenPgpSignatureResult signatureResult = pgpResult.getSignatureResult();
|
||||||
|
int resultType = OpenPgpApi.RESULT_TYPE_UNENCRYPTED_UNSIGNED;
|
||||||
if (signatureResult != null) {
|
if (signatureResult != null) {
|
||||||
resultType |= OpenPgpApi.RESULT_TYPE_SIGNED;
|
resultType |= OpenPgpApi.RESULT_TYPE_SIGNED;
|
||||||
if (!signatureResult.isSignatureOnly()) {
|
if (!signatureResult.isSignatureOnly()) {
|
||||||
resultType |= OpenPgpApi.RESULT_TYPE_ENCRYPTED;
|
resultType |= OpenPgpApi.RESULT_TYPE_ENCRYPTED;
|
||||||
}
|
}
|
||||||
result.putExtra(OpenPgpApi.RESULT_TYPE, resultType);
|
|
||||||
|
|
||||||
result.putExtra(OpenPgpApi.RESULT_SIGNATURE, signatureResult);
|
result.putExtra(OpenPgpApi.RESULT_SIGNATURE, signatureResult);
|
||||||
|
|
||||||
@ -599,7 +598,10 @@ public class OpenPgpService extends RemoteService {
|
|||||||
// If signature key is known, return PendingIntent to show key
|
// If signature key is known, return PendingIntent to show key
|
||||||
result.putExtra(OpenPgpApi.RESULT_INTENT, getShowKeyPendingIntent(signatureResult.getKeyId()));
|
result.putExtra(OpenPgpApi.RESULT_INTENT, getShowKeyPendingIntent(signatureResult.getKeyId()));
|
||||||
}
|
}
|
||||||
|
} else {
|
||||||
|
resultType |= OpenPgpApi.RESULT_TYPE_ENCRYPTED;
|
||||||
}
|
}
|
||||||
|
result.putExtra(OpenPgpApi.RESULT_TYPE, resultType);
|
||||||
|
|
||||||
if (data.getIntExtra(OpenPgpApi.EXTRA_API_VERSION, -1) >= 4) {
|
if (data.getIntExtra(OpenPgpApi.EXTRA_API_VERSION, -1) >= 4) {
|
||||||
OpenPgpMetadata metadata = pgpResult.getDecryptMetadata();
|
OpenPgpMetadata metadata = pgpResult.getDecryptMetadata();
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
* Copyright (C) 2013-2014 Dominik Schürmann <dominik@dominikschuermann.de>
|
* Copyright (C) 2013-2014 Dominik Schürmann <dominik@dominikschuermann.de>
|
||||||
* Copyright (C) 2015 Kent Nguyen <kentnguyen@moneylover.me>
|
* Copyright (C) 2015 Kent Nguyen <kentnguyen@moneylover.me>
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
@ -32,6 +32,7 @@ import android.os.Build;
|
|||||||
import android.os.Handler;
|
import android.os.Handler;
|
||||||
import android.os.Message;
|
import android.os.Message;
|
||||||
import android.provider.Settings;
|
import android.provider.Settings;
|
||||||
|
|
||||||
import org.sufficientlysecure.keychain.Constants;
|
import org.sufficientlysecure.keychain.Constants;
|
||||||
import org.sufficientlysecure.keychain.R;
|
import org.sufficientlysecure.keychain.R;
|
||||||
import org.sufficientlysecure.keychain.provider.KeychainContract;
|
import org.sufficientlysecure.keychain.provider.KeychainContract;
|
||||||
|
Loading…
Reference in New Issue
Block a user