Home
last modified time | relevance | path

Searched refs:AtNonceS (Results 1 – 4 of 4) sorted by relevance

/packages/modules/IPsec/tests/iketests/src/java/com/android/internal/net/eap/message/simaka/attributes/
DAtNonceSTest.java33 import com.android.internal.net.eap.test.message.simaka.EapSimAkaAttribute.AtNonceS;
55 new AtNonceS(INVALID_NONCE); in testConstructorInvalidNonceLength()
67 assertTrue(result instanceof AtNonceS); in testDecode()
68 AtNonceS atNonceS = (AtNonceS) result; in testDecode()
86 AtNonceS atNonceS = new AtNonceS(hexStringToByteArray(NONCE_S)); in testEncode()
/packages/modules/IPsec/src/java/com/android/internal/net/eap/message/simaka/
DEapSimAkaAttributeFactory.java49 import com.android.internal.net.eap.message.simaka.EapSimAkaAttribute.AtNonceS;
104 return new AtNonceS(lengthInBytes, byteBuffer); in getAttribute()
DEapSimAkaAttribute.java775 public static class AtNonceS extends EapSimAkaReservedBytesAttribute { class in EapSimAkaAttribute
781 public AtNonceS(int lengthInBytes, ByteBuffer byteBuffer) in AtNonceS() method in EapSimAkaAttribute.AtNonceS
793 public AtNonceS(byte[] nonceS) throws EapSimAkaInvalidAttributeException { in AtNonceS() method in EapSimAkaAttribute.AtNonceS
/packages/modules/IPsec/src/java/com/android/internal/net/eap/statemachine/
DEapAkaMethodStateMachine.java816 ((EapSimAkaAttribute.AtNonceS) securedAttributes.get(EAP_AT_NONCE_S)).nonceS; in handleReauthentication()