Searched refs:Asn1Constructed (Results 1 – 4 of 4) sorted by relevance
/frameworks/base/packages/Osu/src/com/android/hotspot2/osu/ |
D | SPVerifier.java | 10 import com.android.hotspot2.asn1.Asn1Constructed; 93 private LogoTypeImage(Asn1Constructed sequence) throws IOException { in LogoTypeImage() 97 castObject(children.next(), Asn1Constructed.class).getChildren().iterator(); in LogoTypeImage() 100 Asn1Constructed hashes = castObject(logoTypeDetails.next(), Asn1Constructed.class); in LogoTypeImage() 102 mHashes.add(new HashAlgAndValue(castObject(hash, Asn1Constructed.class))); in LogoTypeImage() 104 Asn1Constructed urls = castObject(logoTypeDetails.next(), Asn1Constructed.class); in LogoTypeImage() 117 castObject(children.next(), Asn1Constructed.class).getChildren().iterator(); in LogoTypeImage() 192 private HashAlgAndValue(Asn1Constructed sequence) throws IOException { in HashAlgAndValue() 233 if (container.getClass() != Asn1Constructed.class) { in getFirstInner() 249 Asn1Constructed.class)); in verify() [all …]
|
/frameworks/base/packages/Osu/src/com/android/hotspot2/asn1/ |
D | Asn1Constructed.java | 6 public class Asn1Constructed extends Asn1Object { class 10 public Asn1Constructed(int tag, Asn1Class asn1Class, int length, in Asn1Constructed() method in Asn1Constructed 34 ((Asn1Constructed) child).toString(level + 1, sb); in toString()
|
D | Asn1Decoder.java | 87 Asn1Constructed root = in decode() 88 new Asn1Constructed(0, null, data.remaining(), data, data.position()); in decode() 93 private static void decode(int level, Asn1Constructed parent) throws DecodeException { in decode() 110 Asn1Constructed root = in decode() 111 new Asn1Constructed(tag, asn1Class, length, payload, tagPosition); in decode()
|
/frameworks/base/packages/Osu/src/com/android/hotspot2/est/ |
D | ESTHandler.java | 9 import com.android.hotspot2.asn1.Asn1Constructed; 295 ByteBuffer certOctets = ((Asn1Constructed) certObject).getEncoding(); in unpackPkcs7() 331 if (sequence.getClass() != Asn1Constructed.class) { in buildCSR()
|