Home
last modified time | relevance | path

Searched refs:derValue (Results 1 – 14 of 14) sorted by relevance

/libcore/ojluni/src/main/java/sun/security/x509/
DX400Address.java355 public X400Address(DerValue derValue) throws IOException { in X400Address() argument
356 nameValue = derValue.toByteArray(); in X400Address()
373 DerValue derValue = new DerValue(nameValue); in encode() local
374 out.putDerValue(derValue); in encode()
DOIDName.java51 public OIDName(DerValue derValue) throws IOException { in OIDName() argument
52 oid = derValue.getOID(); in OIDName()
DAccessDescription.java61 public AccessDescription(DerValue derValue) throws IOException { in AccessDescription() argument
62 DerInputStream derIn = derValue.getData(); in AccessDescription()
DRFC822Name.java53 public RFC822Name(DerValue derValue) throws IOException { in RFC822Name() argument
54 name = derValue.getIA5String(); in RFC822Name()
DDNSName.java64 public DNSName(DerValue derValue) throws IOException { in DNSName() argument
65 name = derValue.getIA5String(); in DNSName()
DEDIPartyName.java82 public EDIPartyName(DerValue derValue) throws IOException { in EDIPartyName() argument
83 DerInputStream in = new DerInputStream(derValue.toByteArray()); in EDIPartyName()
DOtherName.java88 public OtherName(DerValue derValue) throws IOException { in OtherName() argument
89 DerInputStream in = derValue.toDerInputStream(); in OtherName()
DURIName.java95 public URIName(DerValue derValue) throws IOException { in URIName() argument
96 this(derValue.getIA5String()); in URIName()
DIPAddressName.java81 public IPAddressName(DerValue derValue) throws IOException { in IPAddressName() argument
82 this(derValue.getOctetString()); in IPAddressName()
DX509CRLEntryImpl.java131 public X509CRLEntryImpl(DerValue derValue) throws CRLException { in X509CRLEntryImpl() argument
133 parse(derValue); in X509CRLEntryImpl()
/libcore/ojluni/src/main/java/sun/security/pkcs/
DSigningCertificateInfo.java109 DerValue derValue = new DerValue(bytes); in parse() local
110 if (derValue.tag != DerValue.tag_Sequence) { in parse()
115 DerValue[] certs = derValue.data.getSequence(1); in parse()
122 if (derValue.data.available() > 0) { in parse()
123 DerValue[] policies = derValue.data.getSequence(1); in parse()
/libcore/ojluni/annotations/hiddenapi/sun/security/x509/
DAccessDescription.java40 public AccessDescription(sun.security.util.DerValue derValue) throws java.io.IOException { in AccessDescription() argument
DURIName.java31 public URIName(sun.security.util.DerValue derValue) throws java.io.IOException { in URIName() argument
DX509CRLEntryImpl.java47 public X509CRLEntryImpl(sun.security.util.DerValue derValue) in X509CRLEntryImpl() argument