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