Home
last modified time | relevance | path

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

/frameworks/libs/service_entitlement/java/com/android/libraries/entitlement/eapaka/
DMasterKey.java238 System.arraycopy(BytesConverter.convertIntegerTo4Bytes(t[i]), 0, bytesH[i], 0, 4); in doFunctionG()
293 bytesA = BytesConverter.convertIntegerTo4Bytes(temp); in doFunctionG()
318 return BytesConverter.convertIntegerTo4Bytes(iA.add(iB).intValue()); in addTwoBytes()
331 return BytesConverter.convertIntegerTo4Bytes(result.intValue()); in doFunctionS()
340 return BytesConverter.convertIntegerTo4Bytes(result.intValue()); in doXor()
DEapAkaResponse.java194 byte[] lengthBytes = BytesConverter.convertIntegerTo4Bytes(message.length); in generateEapAkaSynchronizationFailureResponse()
226 byte[] lengthBytes = BytesConverter.convertIntegerTo4Bytes(message.length); in createEapAkaChallengeResponse()
247 byte[] resBitLength = BytesConverter.convertIntegerTo4Bytes(res.length * 8); in createEapAkaChallengeResponse()
/frameworks/libs/service_entitlement/java/com/android/libraries/entitlement/utils/
DBytesConverter.java59 public static byte[] convertIntegerTo4Bytes(int value) { in convertIntegerTo4Bytes() method in BytesConverter