diff options
author | Chad Brubaker <cbrubaker@google.com> | 2015-03-30 20:06:29 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2015-03-30 20:06:39 +0000 |
commit | f603e2861430f13a746f80885b5fc00994f64391 (patch) | |
tree | eed5ac2425d689b193ed884cd3596670cdecee98 /core/java/android/security | |
parent | 631565abd6cadd65befe197afa7bac0d44f70fb2 (diff) | |
parent | 5654b36b4667431e49d27c07a06d275656071e75 (diff) | |
download | frameworks_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.aidl | 2 |
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); } |