Esempio n. 1
0
 public boolean verify(String key, byte[] data, byte[] signature) {
   try {
     return mBinder.verify(key, data, signature) == NO_ERROR;
   } catch (RemoteException e) {
     Log.w(TAG, "Cannot connect to keystore", e);
     return false;
   }
 }