Home
last modified time | relevance | path

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

/packages/modules/IPsec/tests/iketests/src/java/com/android/internal/net/eap/message/simaka/attributes/
DAtResTest.java20 …t static com.android.internal.net.eap.message.simaka.attributes.EapTestAttributeDefinitions.AT_RES;
52 ByteBuffer input = ByteBuffer.wrap(AT_RES); in testDecode()
58 assertEquals(AT_RES.length, atRes.lengthInBytes); in testDecode()
94 AtRes atRes = new AtRes(AT_RES.length, RES_BYTES); in testEncode()
96 ByteBuffer result = ByteBuffer.allocate(AT_RES.length); in testEncode()
98 assertArrayEquals(AT_RES, result.array()); in testEncode()
105 ByteBuffer result = ByteBuffer.allocate(AT_RES.length); in testGetAtRes()
107 assertArrayEquals(AT_RES, result.array()); in testGetAtRes()
DEapTestAttributeDefinitions.java72 public static final byte[] AT_RES = hexStringToByteArray("03030028" + RES + "000000"); field in EapTestAttributeDefinitions