Home
last modified time | relevance | path

Searched refs:Asn1Decoder (Results 1 – 7 of 7) sorted by relevance

/frameworks/base/packages/Osu/src/com/android/hotspot2/est/
DESTHandler.java10 import com.android.hotspot2.asn1.Asn1Decoder;
131 Collection<Asn1Object> pkcs7Content1 = Asn1Decoder.decode(octetBuffer); in execute()
207 Collection<Asn1Object> o = Asn1Decoder.decode(ByteBuffer.wrap(csrData)); in execute()
218 Collection<Asn1Object> pkcs7Content2 = Asn1Decoder.decode(octetBuffer); in execute()
230 private static final Asn1ID sSEQUENCE = new Asn1ID(Asn1Decoder.TAG_SEQ, Asn1Class.Universal);
237 Collection<Asn1Object> pkcs7Content = Asn1Decoder.decode(pkcs7); in unpackPkcs7()
265 if (itemMap.put(item.getTag(), item) != null && item.getTag() != Asn1Decoder.TAG_SET) { in unpackPkcs7()
270 Asn1Object versionObject = itemMap.get(Asn1Decoder.TAG_INTEGER); in unpackPkcs7()
275 Asn1Object innerContentInfo = itemMap.get(Asn1Decoder.TAG_SEQ); in unpackPkcs7()
322 Collection<Asn1Object> csrs = Asn1Decoder.decode(octetBuffer); in buildCSR()
[all …]
/frameworks/base/packages/Osu/src/com/android/hotspot2/asn1/
DAsn1Oid.java34 long seg01 = current & Asn1Decoder.ByteMask; in Asn1Oid()
47 segValue |= current & Asn1Decoder.MoreData; in Asn1Oid()
48 if ((current & Asn1Decoder.MoreBit) == 0) { in Asn1Oid()
53 segValue <<= Asn1Decoder.MoreWidth; in Asn1Oid()
55 if ((current & Asn1Decoder.MoreBit) != 0) in Asn1Oid()
61 super(Asn1Decoder.TAG_OID, Asn1Class.Universal, false, -1); in Asn1Oid()
DAsn1Octets.java37 sb.append(String.format(" %02x", b & Asn1Decoder.ByteMask)); in toString()
41 } else if (getTag() == Asn1Decoder.TAG_NULL && getLength() == 0) { in toString()
DAsn1Object.java39 return mLength == Asn1Decoder.IndefiniteLength; in isIndefiniteLength()
72 Asn1Tag tag = mClass == Asn1Class.Universal ? Asn1Decoder.mapTag(mTag) : null; in toSimpleString()
DAsn1String.java16 Charset charset = tag == Asn1Decoder.TAG_UTF8String in Asn1String()
DAsn1Decoder.java8 public class Asn1Decoder { class
/frameworks/base/packages/Osu/src/com/android/hotspot2/osu/
DSPVerifier.java11 import com.android.hotspot2.asn1.Asn1Decoder;
322 Asn1Octets octetString = (Asn1Octets) Asn1Decoder.decode(ByteBuffer.wrap(data)). in getExtension()
324 Asn1Constructed sequence = castObject(Asn1Decoder.decode( in getExtension()