Home
last modified time | relevance | path

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

/aosp12/packages/modules/IPsec/src/java/android/net/ipsec/ike/
H A DIkeSessionParams.java229 @NonNull private final IkeAuthConfig mLocalAuthConfig;
230 @NonNull private final IkeAuthConfig mRemoteAuthConfig;
256 @NonNull IkeAuthConfig localAuthConfig, in IkeSessionParams()
257 @NonNull IkeAuthConfig remoteAuthConfig, in IkeSessionParams()
497 public IkeAuthConfig getLocalAuthConfig() { in getLocalAuthConfig()
503 public IkeAuthConfig getRemoteAuthConfig() { in getRemoteAuthConfig()
706 public abstract static class IkeAuthConfig { class in IkeSessionParams
773 if (!(o instanceof IkeAuthConfig)) { in equals()
777 IkeAuthConfig other = (IkeAuthConfig) o; in equals()
1386 private Builder setAuth(IkeAuthConfig local, IkeAuthConfig remote) { in setAuth()
[all …]
/aosp12/packages/modules/IPsec/tests/cts/src/android/ipsec/ike/cts/
H A DIkeSessionParamsTest.java21 import static android.net.ipsec.ike.IkeSessionParams.IkeAuthConfig;
177 IkeAuthConfig localConfig = sessionParams.getLocalAuthConfig(); in verifyIkeParamsMinimum()
180 IkeAuthConfig remoteConfig = sessionParams.getRemoteAuthConfig(); in verifyIkeParamsMinimum()
344 IkeAuthConfig localConfig = sessionParams.getLocalAuthConfig(); in verifyIkeParamsWithPsk()
347 IkeAuthConfig remoteConfig = sessionParams.getRemoteAuthConfig(); in verifyIkeParamsWithPsk()
386 IkeAuthConfig localConfig = sessionParams.getLocalAuthConfig(); in testBuildWithEap()
389 IkeAuthConfig remoteConfig = sessionParams.getRemoteAuthConfig(); in testBuildWithEap()
406 IkeAuthConfig localConfig = sessionParams.getLocalAuthConfig(); in testBuildWithEapOnlyAuth()
409 IkeAuthConfig remoteConfig = sessionParams.getRemoteAuthConfig(); in testBuildWithEapOnlyAuth()
437 IkeAuthConfig localConfig = sessionParams.getLocalAuthConfig(); in testBuildWithDigitalSignature()
[all …]
/aosp12/packages/modules/IPsec/tests/iketests/src/java/android/net/ipsec/ike/
H A DIkeSessionParamsTest.java27 import static android.net.ipsec.test.ike.IkeSessionParams.IkeAuthConfig;
174 IkeAuthConfig localConfig = sessionParams.getLocalAuthConfig(); in verifyAuthPskConfig()
179 IkeAuthConfig remoteConfig = sessionParams.getRemoteAuthConfig(); in verifyAuthPskConfig()
483 IkeAuthConfig localConfig = sessionParams.getLocalAuthConfig(); in testBuildWithEap()
488 IkeAuthConfig remoteConfig = sessionParams.getRemoteAuthConfig(); in testBuildWithEap()
513 IkeAuthConfig localConfig = sessionParams.getLocalAuthConfig(); in testBuildWithDigitalSignatureAuth()
523 IkeAuthConfig remoteConfig = sessionParams.getRemoteAuthConfig(); in testBuildWithDigitalSignatureAuth()
745 IkeAuthConfig localConfig = sessionParams.getLocalAuthConfig(); in testBuildWithEapOnlyOption()
762 private static void verifyPersistableBundleEncodeDecodeIsLossless(IkeAuthConfig config) { in verifyPersistableBundleEncodeDecodeIsLossless()
764 IkeAuthConfig result = IkeAuthConfig.fromPersistableBundle(bundle); in verifyPersistableBundleEncodeDecodeIsLossless()
/aosp12/packages/modules/IPsec/api/
H A Dcurrent.txt197 … method @NonNull public android.net.ipsec.ike.IkeSessionParams.IkeAuthConfig getLocalAuthConfig();
201 … method @NonNull public android.net.ipsec.ike.IkeSessionParams.IkeAuthConfig getRemoteAuthConfig();
234 public abstract static class IkeSessionParams.IkeAuthConfig {
237 …Params.IkeAuthDigitalSignLocalConfig extends android.net.ipsec.ike.IkeSessionParams.IkeAuthConfig {
243 …arams.IkeAuthDigitalSignRemoteConfig extends android.net.ipsec.ike.IkeSessionParams.IkeAuthConfig {
247 …ss IkeSessionParams.IkeAuthEapConfig extends android.net.ipsec.ike.IkeSessionParams.IkeAuthConfig {
251 …ss IkeSessionParams.IkeAuthPskConfig extends android.net.ipsec.ike.IkeSessionParams.IkeAuthConfig {
/aosp12/frameworks/base/core/java/android/net/vcn/persistablebundleutils/
H A DIkeSessionParamsUtils.java32 import android.net.ipsec.ike.IkeSessionParams.IkeAuthConfig;
226 public static PersistableBundle toPersistableBundle(@NonNull IkeAuthConfig authConfig) { in toPersistableBundle()
/aosp12/packages/modules/IPsec/src/java/com/android/internal/net/ipsec/ike/
H A DIkeSessionStateMachine.java84 import android.net.ipsec.ike.IkeSessionParams.IkeAuthConfig;
3836 IkeAuthConfig authConfig = mIkeSessionParams.getLocalAuthConfig(); in buildIkeAuthReq()