Searched refs:AT_RAND_SIM (Results 1 – 2 of 2) sorted by relevance
21 …tic com.android.internal.net.eap.message.simaka.attributes.EapTestAttributeDefinitions.AT_RAND_SIM;56 ByteBuffer input = ByteBuffer.wrap(AT_RAND_SIM); in testDecode()63 assertEquals(AT_RAND_SIM.length, atRandSim.lengthInBytes); in testDecode()95 AtRandSim atRandSim = new AtRandSim(AT_RAND_SIM.length, expectedRands); in testEncode()97 ByteBuffer result = ByteBuffer.allocate(AT_RAND_SIM.length); in testEncode()99 assertArrayEquals(AT_RAND_SIM, result.array()); in testEncode()
51 public static final byte[] AT_RAND_SIM = hexStringToByteArray("01090000" + RAND_1 + RAND_2); field in EapTestAttributeDefinitions