Home
last modified time | relevance | path

Searched refs:respApdu (Results 1 – 1 of 1) sorted by relevance

/packages/apps/SecureElement/src/com/android/se/security/
DResponseApdu.java45 public ResponseApdu(byte[] respApdu) { in ResponseApdu() argument
46 if (respApdu.length < 2) { in ResponseApdu()
49 if (respApdu.length > 2) { in ResponseApdu()
50 mData = new byte[respApdu.length - 2]; in ResponseApdu()
51 System.arraycopy(respApdu, 0, mData, 0, respApdu.length - 2); in ResponseApdu()
53 mSw1 = 0x00FF & respApdu[respApdu.length - 2]; in ResponseApdu()
54 mSw2 = 0x00FF & respApdu[respApdu.length - 1]; in ResponseApdu()