Searched refs:frpData (Results 1 – 1 of 1) sorted by relevance
684 public static PersistentData fromBytes(byte[] frpData) { in fromBytes() argument685 if (frpData == null || frpData.length == 0) { in fromBytes()689 DataInputStream is = new DataInputStream(new ByteArrayInputStream(frpData)); in fromBytes()696 byte[] payload = new byte[frpData.length - VERSION_1_HEADER_SIZE]; in fromBytes()697 System.arraycopy(frpData, VERSION_1_HEADER_SIZE, payload, 0, payload.length); in fromBytes()