Home
last modified time | relevance | path

Searched refs:IkeRfc822AddrIdentification (Results 1 – 10 of 10) sorted by relevance

/aosp12/packages/modules/IPsec/src/java/android/net/ipsec/ike/
H A DIkeRfc822AddrIdentification.java31 public final class IkeRfc822AddrIdentification extends IkeIdentification { class
44 public IkeRfc822AddrIdentification(byte[] rfc822NameBytes) { in IkeRfc822AddrIdentification() method in IkeRfc822AddrIdentification
55 public IkeRfc822AddrIdentification(@NonNull String rfc822Name) { in IkeRfc822AddrIdentification() method in IkeRfc822AddrIdentification
66 public static IkeRfc822AddrIdentification fromPersistableBundle(@NonNull PersistableBundle in) { in fromPersistableBundle()
69 return new IkeRfc822AddrIdentification(in.getString(RFC822_NAME_KEY)); in fromPersistableBundle()
94 if (!(o instanceof IkeRfc822AddrIdentification)) return false; in equals()
97 return rfc822Name.equals(((IkeRfc822AddrIdentification) o).rfc822Name); in equals()
H A DIkeIdentification.java114 return IkeRfc822AddrIdentification.fromPersistableBundle(in); in fromPersistableBundle()
/aosp12/frameworks/base/core/java/android/net/vcn/persistablebundleutils/
H A DIkeIdentificationUtils.java29 import android.net.ipsec.ike.IkeRfc822AddrIdentification;
94 } else if (ikeId instanceof IkeRfc822AddrIdentification) { in toPersistableBundle()
96 IkeRfc822AddrIdentification id = (IkeRfc822AddrIdentification) ikeId; in toPersistableBundle()
138 return new IkeRfc822AddrIdentification(in.getString(RFC822_ADDRESS_KEY)); in fromPersistableBundle()
/aosp12/packages/modules/IPsec/tests/cts/src/android/ipsec/ike/cts/
H A DIkeIdentificationTest.java27 import android.net.ipsec.ike.IkeRfc822AddrIdentification;
72 IkeRfc822AddrIdentification ikeId = new IkeRfc822AddrIdentification(LOCAL_RFC822_NAME); in testIkeRfc822AddrIdentification()
/aosp12/packages/modules/IPsec/tests/iketests/src/java/com/android/internal/net/ipsec/ike/message/
H A DIkeIdPayloadTest.java30 import android.net.ipsec.test.ike.IkeRfc822AddrIdentification;
153 IkeRfc822AddrIdentification ikeId = (IkeRfc822AddrIdentification) payload.ikeId; in testDecodeRfc822AddrIdPayload()
250 true /*isInitiator*/, new IkeRfc822AddrIdentification(RFC822_NAME)); in testConstructAndEncodeRfc822AddrIdPayload()
310 verifyPersistableBundleEncodeDecodeIsLossless(new IkeRfc822AddrIdentification(RFC822_NAME)); in testPersistableBundleEncodeDecodeFqdnId()
/aosp12/frameworks/base/tests/vcn/java/android/net/vcn/persistablebundleutils/
H A DIkeIdentificationUtilsTest.java27 import android.net.ipsec.ike.IkeRfc822AddrIdentification;
72 new IkeRfc822AddrIdentification("androidike@example.com")); in testPersistableBundleEncodeDecodeFqdnId()
/aosp12/packages/modules/IPsec/src/java/com/android/internal/net/ipsec/ike/message/
H A DIkeIdPayload.java25 import android.net.ipsec.ike.IkeRfc822AddrIdentification;
85 ikeId = new IkeRfc822AddrIdentification(idData); in IkeIdPayload()
/aosp12/frameworks/base/services/core/java/com/android/server/connectivity/
H A DVpnIkev2Utils.java65 import android.net.ipsec.ike.IkeRfc822AddrIdentification;
413 return new IkeRfc822AddrIdentification(identityStr.substring(2)); in parseIkeIdentification()
419 return new IkeRfc822AddrIdentification(identityStr); in parseIkeIdentification()
/aosp12/packages/modules/IPsec/api/
H A Dcurrent.txt129 public final class IkeRfc822AddrIdentification extends android.net.ipsec.ike.IkeIdentification {
130 ctor public IkeRfc822AddrIdentification(@NonNull String);
/aosp12/packages/services/Iwlan/src/com/google/android/iwlan/epdg/
H A DEpdgTunnelManager.java39 import android.net.ipsec.ike.IkeRfc822AddrIdentification;
1151 return new IkeRfc822AddrIdentification(id); in getId()