HomeSort by relevance Sort by last modified time
    Searched refs:Asn1Decoder (Results 1 - 7 of 7) sorted by null

  /frameworks/base/packages/Osu/src/com/android/hotspot2/asn1/
Asn1Octets.java 37 sb.append(String.format(" %02x", b & Asn1Decoder.ByteMask));
41 } else if (getTag() == Asn1Decoder.TAG_NULL && getLength() == 0) {
Asn1String.java 16 Charset charset = tag == Asn1Decoder.TAG_UTF8String
Asn1Object.java 39 return mLength == Asn1Decoder.IndefiniteLength;
72 Asn1Tag tag = mClass == Asn1Class.Universal ? Asn1Decoder.mapTag(mTag) : null;
Asn1Oid.java 34 long seg01 = current & Asn1Decoder.ByteMask;
47 segValue |= current & Asn1Decoder.MoreData;
48 if ((current & Asn1Decoder.MoreBit) == 0) {
53 segValue <<= Asn1Decoder.MoreWidth;
55 if ((current & Asn1Decoder.MoreBit) != 0)
61 super(Asn1Decoder.TAG_OID, Asn1Class.Universal, false, -1);
Asn1Decoder.java 8 public class Asn1Decoder {
  /frameworks/base/packages/Osu/src/com/android/hotspot2/est/
ESTHandler.java 10 import com.android.hotspot2.asn1.Asn1Decoder;
130 Collection<Asn1Object> pkcs7Content1 = Asn1Decoder.decode(octetBuffer);
168 Collection<Asn1Object> pkcs7Content = Asn1Decoder.decode(octetBuffer);
206 Collection<Asn1Object> o = Asn1Decoder.decode(ByteBuffer.wrap(csrData));
217 Collection<Asn1Object> pkcs7Content2 = Asn1Decoder.decode(octetBuffer);
229 private static final Asn1ID sSEQUENCE = new Asn1ID(Asn1Decoder.TAG_SEQ, Asn1Class.Universal);
236 Collection<Asn1Object> pkcs7Content = Asn1Decoder.decode(pkcs7);
264 if (itemMap.put(item.getTag(), item) != null && item.getTag() != Asn1Decoder.TAG_SET) {
269 Asn1Object versionObject = itemMap.get(Asn1Decoder.TAG_INTEGER);
274 Asn1Object innerContentInfo = itemMap.get(Asn1Decoder.TAG_SEQ)
    [all...]
  /frameworks/base/packages/Osu/src/com/android/hotspot2/osu/
SPVerifier.java 11 import com.android.hotspot2.asn1.Asn1Decoder;
321 Asn1Octets octetString = (Asn1Octets) Asn1Decoder.decode(ByteBuffer.wrap(data)).
323 Asn1Constructed sequence = castObject(Asn1Decoder.decode(

Completed in 1374 milliseconds