Searched refs:derIn (Results 1 - 12 of 12) sorted by relevance

/openjdk7/jdk/test/sun/security/util/asn1StringTypes/
H A DStringTypes.java71 DerInputStream derIn = new DerInputStream(data);
78 der = derIn.getDerValue();
81 der = derIn.getDerValue();
84 der = derIn.getDerValue();
87 der = derIn.getDerValue();
90 der = derIn.getDerValue();
93 if (derIn.available() > 0)
97 derIn.reset();
101 verifyString("UTF8", derIn.getUTF8String());
102 verifyString("Printable", derIn
[all...]
/openjdk7/jdk/src/share/classes/sun/security/x509/
H A DAccessDescription.java63 DerInputStream derIn = derValue.getData();
64 accessMethod = derIn.getOID();
65 accessLocation = new GeneralName(derIn.getDerValue());
H A DCertificateValidity.java80 DerInputStream derIn = new DerInputStream(derVal.toByteArray());
81 DerValue[] seq = derIn.getSequence(2);
H A DX509CRLImpl.java1133 DerInputStream derIn = new DerInputStream(encoded);
1134 DerValue tbsCert = derIn.getSequence(3)[0];
H A DX509CertImpl.java1808 DerInputStream derIn = new DerInputStream(encoded);
1809 DerValue tbsCert = derIn.getSequence(3)[0];
/openjdk7/jdk/src/share/classes/sun/security/provider/certpath/
H A DCertId.java109 public CertId(DerInputStream derIn) throws IOException { argument
110 hashAlgId = AlgorithmId.parse(derIn.getDerValue());
111 issuerNameHash = derIn.getOctetString();
112 issuerKeyHash = derIn.getOctetString();
113 certSerialNumber = new SerialNumber(derIn);
H A DOCSPResponse.java199 DerInputStream derIn = der.getData();
202 int status = derIn.getEnumerated();
219 der = derIn.getDerValue();
231 derIn = tmp.data;
232 ObjectIdentifier responseType = derIn.getOID();
247 new DerInputStream(derIn.getOctetString());
/openjdk7/jdk/src/share/classes/sun/security/util/
H A DDerInputStream.java110 DerIndefLenConverter derIn = new DerIndefLenConverter();
111 buffer = new DerInputBuffer(derIn.convert(inData));
361 DerIndefLenConverter derIn = new DerIndefLenConverter();
362 buffer = new DerInputBuffer(derIn.convert(indefData));
H A DDerValue.java263 DerIndefLenConverter derIn = new DerIndefLenConverter();
264 inbuf = new DerInputBuffer(derIn.convert(indefData));
375 DerIndefLenConverter derIn = new DerIndefLenConverter();
376 in = new ByteArrayInputStream(derIn.convert(indefData));
/openjdk7/jdk/src/share/classes/sun/security/pkcs/
H A DPKCS9Attributes.java194 DerInputStream derIn = new DerInputStream(derEncoding);
195 DerValue[] derVals = derIn.getSet(3,true);
H A DPKCS9Attribute.java483 DerInputStream derIn = new DerInputStream(derVal.toByteArray());
484 DerValue[] val = derIn.getSequence(2);
486 if (derIn.available() != 0)
/openjdk7/jdk/test/sun/security/krb5/auto/
H A DKDC.java679 DerInputStream derIn = new DerInputStream(bb);
680 DerValue der = derIn.getDerValue();

Completed in 87 milliseconds