Searched refs:derValue (Results 1 – 14 of 14) sorted by relevance
355 public X400Address(DerValue derValue) throws IOException { in X400Address() argument356 nameValue = derValue.toByteArray(); in X400Address()373 DerValue derValue = new DerValue(nameValue); in encode() local374 out.putDerValue(derValue); in encode()
51 public OIDName(DerValue derValue) throws IOException { in OIDName() argument52 oid = derValue.getOID(); in OIDName()
61 public AccessDescription(DerValue derValue) throws IOException { in AccessDescription() argument62 DerInputStream derIn = derValue.getData(); in AccessDescription()
53 public RFC822Name(DerValue derValue) throws IOException { in RFC822Name() argument54 name = derValue.getIA5String(); in RFC822Name()
82 public EDIPartyName(DerValue derValue) throws IOException { in EDIPartyName() argument83 DerInputStream in = new DerInputStream(derValue.toByteArray()); in EDIPartyName()
64 public DNSName(DerValue derValue) throws IOException { in DNSName() argument65 name = derValue.getIA5String(); in DNSName()
88 public OtherName(DerValue derValue) throws IOException { in OtherName() argument89 DerInputStream in = derValue.toDerInputStream(); in OtherName()
95 public URIName(DerValue derValue) throws IOException { in URIName() argument96 this(derValue.getIA5String()); in URIName()
81 public IPAddressName(DerValue derValue) throws IOException { in IPAddressName() argument82 this(derValue.getOctetString()); in IPAddressName()
131 public X509CRLEntryImpl(DerValue derValue) throws CRLException { in X509CRLEntryImpl() argument133 parse(derValue); in X509CRLEntryImpl()
109 DerValue derValue = new DerValue(bytes); in parse() local110 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()
40 public AccessDescription(sun.security.util.DerValue derValue) throws java.io.IOException { in AccessDescription() argument
31 public URIName(sun.security.util.DerValue derValue) throws java.io.IOException { in URIName() argument
47 public X509CRLEntryImpl(sun.security.util.DerValue derValue) in X509CRLEntryImpl() argument