summaryrefslogtreecommitdiffstats
path: root/core/java/android/security
diff options
context:
space:
mode:
authorChad Brubaker <cbrubaker@google.com>2015-03-30 20:06:29 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2015-03-30 20:06:39 +0000
commitf603e2861430f13a746f80885b5fc00994f64391 (patch)
treeeed5ac2425d689b193ed884cd3596670cdecee98 /core/java/android/security
parent631565abd6cadd65befe197afa7bac0d44f70fb2 (diff)
parent5654b36b4667431e49d27c07a06d275656071e75 (diff)
downloadframeworks_base-f603e2861430f13a746f80885b5fc00994f64391.zip
frameworks_base-f603e2861430f13a746f80885b5fc00994f64391.tar.gz
frameworks_base-f603e2861430f13a746f80885b5fc00994f64391.tar.bz2
Merge "Add authorization binder methods"
Diffstat (limited to 'core/java/android/security')
-rw-r--r--core/java/android/security/IKeystoreService.aidl2
1 files changed, 2 insertions, 0 deletions
diff --git a/core/java/android/security/IKeystoreService.aidl b/core/java/android/security/IKeystoreService.aidl
index 14b5748..579cdbe 100644
--- a/core/java/android/security/IKeystoreService.aidl
+++ b/core/java/android/security/IKeystoreService.aidl
@@ -73,4 +73,6 @@ interface IKeystoreService {
OperationResult update(IBinder token, in KeymasterArguments params, in byte[] input);
OperationResult finish(IBinder token, in KeymasterArguments params, in byte[] signature);
int abort(IBinder handle);
+ boolean isOperationAuthorized(IBinder token);
+ int addAuthToken(in byte[] authToken);
}