Home
last modified time | relevance | path

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

/aosp12/frameworks/base/core/java/android/net/vcn/persistablebundleutils/
H A DIkeSessionParamsUtils.java226 public static PersistableBundle toPersistableBundle(@NonNull IkeAuthConfig authConfig) { in toPersistableBundle() argument
227 if (authConfig instanceof IkeAuthPskConfig) { in toPersistableBundle()
228 IkeAuthPskConfig config = (IkeAuthPskConfig) authConfig; in toPersistableBundle()
231 } else if (authConfig instanceof IkeAuthDigitalSignLocalConfig) { in toPersistableBundle()
232 IkeAuthDigitalSignLocalConfig config = (IkeAuthDigitalSignLocalConfig) authConfig; in toPersistableBundle()
235 } else if (authConfig instanceof IkeAuthDigitalSignRemoteConfig) { in toPersistableBundle()
236 IkeAuthDigitalSignRemoteConfig config = (IkeAuthDigitalSignRemoteConfig) authConfig; in toPersistableBundle()
239 } else if (authConfig instanceof IkeAuthEapConfig) { in toPersistableBundle()
240 IkeAuthEapConfig config = (IkeAuthEapConfig) authConfig; in toPersistableBundle()
/aosp12/packages/modules/IPsec/src/java/com/android/internal/net/ipsec/ike/
H A DIkeSessionStateMachine.java3836 IkeAuthConfig authConfig = mIkeSessionParams.getLocalAuthConfig(); in buildIkeAuthReq() local
3837 switch (authConfig.mAuthMethod) { in buildIkeAuthReq()
3841 ((IkeAuthPskConfig) authConfig).mPsk, in buildIkeAuthReq()
3879 + authConfig.mAuthMethod)); in buildIkeAuthReq()