HomeSort by relevance Sort by last modified time
    Searched defs:derValue (Results 1 - 4 of 4) sorted by null

  /libcore/ojluni/src/main/java/sun/security/x509/
X400Address.java 29 import sun.security.util.DerValue;
352 * @param derValue the encoded DER X400Address.
355 public X400Address(DerValue derValue) throws IOException {
356 nameValue = derValue.toByteArray();
373 DerValue derValue = new DerValue(nameValue);
374 out.putDerValue(derValue);
IPAddressName.java 35 import sun.security.util.DerValue;
78 * @params derValue the encoded DER IPAddressName.
81 public IPAddressName(DerValue derValue) throws IOException {
82 this(derValue.getOctetString());
URIName.java 92 * @param derValue the encoded DER URIName.
95 public URIName(DerValue derValue) throws IOException {
96 this(derValue.getIA5String());
156 public static URIName nameConstraint(DerValue value) throws IOException {
  /libcore/ojluni/src/main/java/sun/security/pkcs/
SigningCertificateInfo.java 33 import sun.security.util.DerValue;
109 DerValue derValue = new DerValue(bytes);
110 if (derValue.tag != DerValue.tag_Sequence) {
115 DerValue[] certs = derValue.data.getSequence(1);
122 if (derValue.data.available() > 0) {
123 DerValue[] policies = derValue.data.getSequence(1)
    [all...]

Completed in 60 milliseconds