Home
last modified time | relevance | path

Searched refs:AT_RAND_AKA (Results 1 – 2 of 2) sorted by relevance

/packages/modules/IPsec/tests/iketests/src/java/com/android/internal/net/eap/message/simaka/attributes/
DAtRandAkaTest.java20 …tic com.android.internal.net.eap.message.simaka.attributes.EapTestAttributeDefinitions.AT_RAND_AKA;
49 ByteBuffer input = ByteBuffer.wrap(AT_RAND_AKA); in testDecode()
55 assertEquals(AT_RAND_AKA.length, atRandAka.lengthInBytes); in testDecode()
73 ByteBuffer result = ByteBuffer.allocate(AT_RAND_AKA.length); in testEncode()
75 assertArrayEquals(AT_RAND_AKA, result.array()); in testEncode()
DEapTestAttributeDefinitions.java52 public static final byte[] AT_RAND_AKA = hexStringToByteArray("01050000" + RAND_1); field in EapTestAttributeDefinitions