Home
last modified time | relevance | path

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

/packages/modules/IPsec/tests/iketests/src/java/android/net/ipsec/ike/
DIkeSessionParamsTest.java188 assertEquals(IkeSessionParams.IKE_AUTH_METHOD_PSK, localConfig.mAuthMethod); in verifyAuthPskConfig()
193 assertEquals(IkeSessionParams.IKE_AUTH_METHOD_PSK, remoteConfig.mAuthMethod); in verifyAuthPskConfig()
541 assertEquals(IkeSessionParams.IKE_AUTH_METHOD_EAP, localConfig.mAuthMethod); in testBuildWithEap()
546 assertEquals(IkeSessionParams.IKE_AUTH_METHOD_PUB_KEY_SIGNATURE, remoteConfig.mAuthMethod); in testBuildWithEap()
574 IkeSessionParams.IKE_AUTH_METHOD_PUB_KEY_SIGNATURE, localAuthConfig.mAuthMethod); in testBuildWithDigitalSignatureAuth()
581 assertEquals(IkeSessionParams.IKE_AUTH_METHOD_PUB_KEY_SIGNATURE, remoteConfig.mAuthMethod); in testBuildWithDigitalSignatureAuth()
/packages/modules/IPsec/src/java/android/net/ipsec/ike/
DIkeSessionParams.java1068 @IkeAuthMethod public final int mAuthMethod; field in IkeSessionParams.IkeAuthConfig
1074 mAuthMethod = authMethod; in IkeAuthConfig()
1119 result.putInt(AUTH_METHOD_KEY, mAuthMethod); in toPersistableBundle()
1126 return Objects.hash(mAuthMethod, mAuthDirection); in hashCode()
1137 return mAuthMethod == other.mAuthMethod && mAuthDirection == other.mAuthDirection; in equals()
2339 if (mLocalAuthConfig.mAuthMethod == IKE_AUTH_METHOD_PUB_KEY_SIGNATURE in build()
/packages/modules/IPsec/src/java/com/android/internal/net/ipsec/ike/
DIkeSessionStateMachine.java4129 == mIkeSessionParams.getLocalAuthConfig().mAuthMethod); in enterState()
4237 switch (authConfig.mAuthMethod) { in buildIkeAuthReq()
4279 + authConfig.mAuthMethod)); in buildIkeAuthReq()
4399 switch (mIkeSessionParams.getRemoteAuthConfig().mAuthMethod) { in authenticate()