Home
last modified time | relevance | path

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

/frameworks/libs/service_entitlement/java/com/android/libraries/entitlement/eapaka/
DMasterKey.java27 import com.android.libraries.entitlement.utils.BytesConverter;
238 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.java32 import com.android.libraries.entitlement.utils.BytesConverter;
194 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.java23 public class BytesConverter { class