Home
last modified time | relevance | path

Searched refs:IkeAuthConfig (Results 1 – 5 of 5) sorted by relevance

/packages/modules/IPsec/src/java/android/net/ipsec/ike/
DIkeSessionParams.java495 @NonNull private final IkeAuthConfig mLocalAuthConfig;
496 @NonNull private final IkeAuthConfig mRemoteAuthConfig;
525 @NonNull IkeAuthConfig localAuthConfig, in IkeSessionParams()
526 @NonNull IkeAuthConfig remoteAuthConfig, in IkeSessionParams()
613 IkeAuthConfig.fromPersistableBundle(in.getPersistableBundle(LOCAL_AUTH_KEY)), in fromPersistableBundle()
614 IkeAuthConfig.fromPersistableBundle(in.getPersistableBundle(REMOTE_AUTH_KEY))); in fromPersistableBundle()
781 public IkeAuthConfig getLocalAuthConfig() { in getLocalAuthConfig()
787 public IkeAuthConfig getRemoteAuthConfig() { in getRemoteAuthConfig()
1064 public abstract static class IkeAuthConfig { class in IkeSessionParams
1073 IkeAuthConfig(@IkeAuthMethod int authMethod, @AuthDirection int authDirection) { in IkeAuthConfig() method in IkeSessionParams.IkeAuthConfig
[all …]
/packages/modules/IPsec/tests/cts/src/android/ipsec/ike/cts/
DIkeSessionParamsTest.java28 import static android.net.ipsec.ike.IkeSessionParams.IkeAuthConfig;
201 IkeAuthConfig localConfig = sessionParams.getLocalAuthConfig(); in verifyIkeParamsMinimum()
204 IkeAuthConfig remoteConfig = sessionParams.getRemoteAuthConfig(); in verifyIkeParamsMinimum()
406 IkeAuthConfig localConfig = sessionParams.getLocalAuthConfig(); in verifyIkeParamsWithPsk()
409 IkeAuthConfig remoteConfig = sessionParams.getRemoteAuthConfig(); in verifyIkeParamsWithPsk()
448 IkeAuthConfig localConfig = sessionParams.getLocalAuthConfig(); in testBuildWithEap()
451 IkeAuthConfig remoteConfig = sessionParams.getRemoteAuthConfig(); in testBuildWithEap()
468 IkeAuthConfig localConfig = sessionParams.getLocalAuthConfig(); in testBuildWithEapOnlyAuth()
471 IkeAuthConfig remoteConfig = sessionParams.getRemoteAuthConfig(); in testBuildWithEapOnlyAuth()
499 IkeAuthConfig localConfig = sessionParams.getLocalAuthConfig(); in testBuildWithDigitalSignature()
[all …]
/packages/modules/IPsec/tests/iketests/src/java/android/net/ipsec/ike/
DIkeSessionParamsTest.java32 import static android.net.ipsec.test.ike.IkeSessionParams.IkeAuthConfig;
186 IkeAuthConfig localConfig = sessionParams.getLocalAuthConfig(); in verifyAuthPskConfig()
191 IkeAuthConfig remoteConfig = sessionParams.getRemoteAuthConfig(); in verifyAuthPskConfig()
539 IkeAuthConfig localConfig = sessionParams.getLocalAuthConfig(); in testBuildWithEap()
544 IkeAuthConfig remoteConfig = sessionParams.getRemoteAuthConfig(); in testBuildWithEap()
569 IkeAuthConfig localConfig = sessionParams.getLocalAuthConfig(); in testBuildWithDigitalSignatureAuth()
579 IkeAuthConfig remoteConfig = sessionParams.getRemoteAuthConfig(); in testBuildWithDigitalSignatureAuth()
843 IkeAuthConfig localConfig = sessionParams.getLocalAuthConfig(); in testBuildWithEapOnlyOption()
860 private static void verifyPersistableBundleEncodeDecodeIsLossless(IkeAuthConfig config) { in verifyPersistableBundleEncodeDecodeIsLossless()
862 IkeAuthConfig result = IkeAuthConfig.fromPersistableBundle(bundle); in verifyPersistableBundleEncodeDecodeIsLossless()
/packages/modules/IPsec/api/
Dcurrent.txt227 … method @NonNull public android.net.ipsec.ike.IkeSessionParams.IkeAuthConfig getLocalAuthConfig();
231 … method @NonNull public android.net.ipsec.ike.IkeSessionParams.IkeAuthConfig getRemoteAuthConfig();
266 public abstract static class IkeSessionParams.IkeAuthConfig {
269 …Params.IkeAuthDigitalSignLocalConfig extends android.net.ipsec.ike.IkeSessionParams.IkeAuthConfig {
275 …arams.IkeAuthDigitalSignRemoteConfig extends android.net.ipsec.ike.IkeSessionParams.IkeAuthConfig {
279 …ss IkeSessionParams.IkeAuthEapConfig extends android.net.ipsec.ike.IkeSessionParams.IkeAuthConfig {
283 …ss IkeSessionParams.IkeAuthPskConfig extends android.net.ipsec.ike.IkeSessionParams.IkeAuthConfig {
/packages/modules/IPsec/src/java/com/android/internal/net/ipsec/ike/
DIkeSessionStateMachine.java110 import android.net.ipsec.ike.IkeSessionParams.IkeAuthConfig;
4236 IkeAuthConfig authConfig = mIkeSessionParams.getLocalAuthConfig(); in buildIkeAuthReq()