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