Loading core/java/android/security/IKeystoreService.aidl +1 −0 Original line number Diff line number Diff line Loading @@ -76,4 +76,5 @@ interface IKeystoreService { int onUserAdded(int userId, int parentId); int onUserRemoved(int userId); int attestKey(String alias, in KeymasterArguments params, out KeymasterCertificateChain chain); int onDeviceOffBody(); } keystore/java/android/security/KeyStore.java +10 −0 Original line number Diff line number Diff line Loading @@ -626,6 +626,16 @@ public class KeyStore { } } /** * Notify keystore that the device went off-body. */ public void onDeviceOffBody() { try { mBinder.onDeviceOffBody(); } catch (RemoteException e) { Log.w(TAG, "Cannot connect to keystore", e); } } /** * Returns a {@link KeyStoreException} corresponding to the provided keystore/keymaster error Loading Loading
core/java/android/security/IKeystoreService.aidl +1 −0 Original line number Diff line number Diff line Loading @@ -76,4 +76,5 @@ interface IKeystoreService { int onUserAdded(int userId, int parentId); int onUserRemoved(int userId); int attestKey(String alias, in KeymasterArguments params, out KeymasterCertificateChain chain); int onDeviceOffBody(); }
keystore/java/android/security/KeyStore.java +10 −0 Original line number Diff line number Diff line Loading @@ -626,6 +626,16 @@ public class KeyStore { } } /** * Notify keystore that the device went off-body. */ public void onDeviceOffBody() { try { mBinder.onDeviceOffBody(); } catch (RemoteException e) { Log.w(TAG, "Cannot connect to keystore", e); } } /** * Returns a {@link KeyStoreException} corresponding to the provided keystore/keymaster error Loading