HomeSort by relevance Sort by last modified time
    Searched defs:derValue (Results 1 - 6 of 6) 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());
157 public static URIName nameConstraint(DerValue value) throws IOException {
  /libcore/ojluni/src/main/java/sun/security/ec/
ECPrivateKeyImpl.java 93 DerValue val =
94 new DerValue(DerValue.tag_Sequence, out.toByteArray());
123 DerValue derValue = in.getDerValue();
124 if (derValue.tag != DerValue.tag_Sequence) {
127 DerInputStream data = derValue.data;
135 DerValue value = data.getDerValue();
  /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...]
  /libcore/ojluni/src/main/java/sun/security/util/
HostnameChecker.java 196 DerValue derValue = subjectName.findMostSpecificAttribute
198 if (derValue != null) {
200 if (isMatched(expectedName, derValue.getAsString())) {

Completed in 55 milliseconds