Searched defs:derValue (Results 1 - 10 of 10) sorted by relevance

/libcore/ojluni/src/main/java/sun/security/x509/
H A DX400Address.java352 * @param derValue the encoded DER X400Address.
355 public X400Address(DerValue derValue) throws IOException { argument
356 nameValue = derValue.toByteArray();
373 DerValue derValue = new DerValue(nameValue);
374 out.putDerValue(derValue);
H A DAccessDescription.java61 public AccessDescription(DerValue derValue) throws IOException { argument
62 DerInputStream derIn = derValue.getData();
H A DDNSName.java61 * @param derValue the encoded DER DNSName.
64 public DNSName(DerValue derValue) throws IOException { argument
65 name = derValue.getIA5String();
H A DOIDName.java48 * @param derValue the encoded DER OIDName.
51 public OIDName(DerValue derValue) throws IOException { argument
52 oid = derValue.getOID();
H A DRFC822Name.java50 * @param derValue the encoded DER RFC822Name.
53 public RFC822Name(DerValue derValue) throws IOException { argument
54 name = derValue.getIA5String();
H A DEDIPartyName.java79 * @param derValue the encoded DER EDIPartyName.
82 public EDIPartyName(DerValue derValue) throws IOException { argument
83 DerInputStream in = new DerInputStream(derValue.toByteArray());
H A DIPAddressName.java78 * @params derValue the encoded DER IPAddressName.
81 public IPAddressName(DerValue derValue) throws IOException { argument
82 this(derValue.getOctetString());
H A DOtherName.java85 * @param derValue the encoded DER OtherName.
88 public OtherName(DerValue derValue) throws IOException { argument
89 DerInputStream in = derValue.toDerInputStream();
H A DURIName.java92 * @param derValue the encoded DER URIName.
95 public URIName(DerValue derValue) throws IOException { argument
96 this(derValue.getIA5String());
H A DX509CRLEntryImpl.java131 public X509CRLEntryImpl(DerValue derValue) throws CRLException { argument
133 parse(derValue);

Completed in 120 milliseconds