Home
last modified time | relevance | path

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

/packages/modules/IPsec/tests/iketests/src/java/android/net/ipsec/ike/
DIkeSessionParamsTest.java29 import static android.net.ipsec.test.ike.IkeSessionParams.IkeAuthDigitalSignRemoteConfig;
489 assertTrue(remoteConfig instanceof IkeAuthDigitalSignRemoteConfig); in testBuildWithEap()
493 ((IkeAuthDigitalSignRemoteConfig) remoteConfig).mTrustAnchor.getTrustedCert()); in testBuildWithEap()
524 assertTrue(remoteConfig instanceof IkeAuthDigitalSignRemoteConfig); in testBuildWithDigitalSignatureAuth()
528 ((IkeAuthDigitalSignRemoteConfig) remoteConfig).mTrustAnchor.getTrustedCert()); in testBuildWithDigitalSignatureAuth()
777 verifyPersistableBundleEncodeDecodeIsLossless(new IkeAuthDigitalSignRemoteConfig(caCert)); in testPersistableBundleEncodeDecodeAuthDigitalSignRemote()
783 verifyPersistableBundleEncodeDecodeIsLossless(new IkeAuthDigitalSignRemoteConfig(null)); in testPersistableBundleEncodeDecodeAuthDigitalSignRemoteWithoutCaCert()
790 new IkeAuthDigitalSignRemoteConfig(caCert), in testEqualsAuthConfigDigitalSignRemote()
791 new IkeAuthDigitalSignRemoteConfig(caCert)); in testEqualsAuthConfigDigitalSignRemote()
793 new IkeAuthDigitalSignRemoteConfig(null), new IkeAuthDigitalSignRemoteConfig(null)); in testEqualsAuthConfigDigitalSignRemote()
[all …]
/packages/modules/IPsec/tests/cts/src/android/ipsec/ike/cts/
DIkeSessionParamsTest.java23 import static android.net.ipsec.ike.IkeSessionParams.IkeAuthDigitalSignRemoteConfig;
390 assertTrue(remoteConfig instanceof IkeAuthDigitalSignRemoteConfig); in testBuildWithEap()
392 mServerCaCert, ((IkeAuthDigitalSignRemoteConfig) remoteConfig).getRemoteCaCert()); in testBuildWithEap()
410 assertTrue(remoteConfig instanceof IkeAuthDigitalSignRemoteConfig); in testBuildWithEapOnlyAuth()
412 mServerCaCert, ((IkeAuthDigitalSignRemoteConfig) remoteConfig).getRemoteCaCert()); in testBuildWithEapOnlyAuth()
445 assertTrue(remoteConfig instanceof IkeAuthDigitalSignRemoteConfig); in testBuildWithDigitalSignature()
447 mServerCaCert, ((IkeAuthDigitalSignRemoteConfig) remoteConfig).getRemoteCaCert()); in testBuildWithDigitalSignature()
471 assertTrue(remoteConfig instanceof IkeAuthDigitalSignRemoteConfig); in testBuildWithDigitalSignatureAndIntermediateCerts()
473 mServerCaCert, ((IkeAuthDigitalSignRemoteConfig) remoteConfig).getRemoteCaCert()); in testBuildWithDigitalSignatureAndIntermediateCerts()
/packages/modules/IPsec/src/java/android/net/ipsec/ike/
DIkeSessionParams.java738 return IkeAuthDigitalSignRemoteConfig.fromPersistableBundle(in); in fromPersistableBundle()
853 public static class IkeAuthDigitalSignRemoteConfig extends IkeAuthConfig { class in IkeSessionParams
866 IkeAuthDigitalSignRemoteConfig(@Nullable X509Certificate caCert) { in IkeAuthDigitalSignRemoteConfig() method in IkeSessionParams.IkeAuthDigitalSignRemoteConfig
886 public static IkeAuthDigitalSignRemoteConfig fromPersistableBundle( in fromPersistableBundle()
898 return new IkeAuthDigitalSignRemoteConfig(caCert); in fromPersistableBundle()
943 if (!super.equals(o) || !(o instanceof IkeAuthDigitalSignRemoteConfig)) { in equals()
947 IkeAuthDigitalSignRemoteConfig other = (IkeAuthDigitalSignRemoteConfig) o; in equals()
1465 new IkeAuthDigitalSignRemoteConfig(serverCaCert)); in setAuthEap()
1547 IkeAuthConfig remoteConfig = new IkeAuthDigitalSignRemoteConfig(serverCaCert); in setAuthDigitalSignature()
/packages/modules/IPsec/api/
Dcurrent.txt243 …public static class IkeSessionParams.IkeAuthDigitalSignRemoteConfig extends android.net.ipsec.ike.…
/packages/modules/IPsec/src/java/com/android/internal/net/ipsec/ike/
DIkeSessionStateMachine.java86 import android.net.ipsec.ike.IkeSessionParams.IkeAuthDigitalSignRemoteConfig;
3993 ((IkeAuthDigitalSignRemoteConfig) in authenticate()