Searched refs:DerInputStream (Results 1 - 25 of 48) sorted by relevance

12

/libcore/ojluni/src/main/java/sun/security/pkcs/
H A DContentInfo.java106 public ContentInfo(DerInputStream derin)
122 public ContentInfo(DerInputStream derin, boolean oldStyle)
125 DerInputStream disType;
126 DerInputStream disTaggedContent;
136 disType = new DerInputStream(type.toByteArray());
150 = new DerInputStream(taggedContent.toByteArray());
207 DerInputStream dis = new DerInputStream(content.toByteArray());
H A DPKCS9Attributes.java33 import sun.security.util.DerInputStream;
68 * DER encoding on a DerInputStream, accepting only attributes
85 DerInputStream in) throws IOException {
104 * DER encoding on a DerInputStream. Accept all attributes
115 public PKCS9Attributes(DerInputStream in) throws IOException {
121 * DER encoding on a DerInputStream. Accept all attributes
135 public PKCS9Attributes(DerInputStream in,
147 * DER encoding on a DerInputStream. All attributes in
186 private byte[] decode(DerInputStream in) throws IOException {
194 DerInputStream derI
[all...]
H A DPKCS7.java91 parse(new DerInputStream(data));
96 * encoded bytes from the DerInputStream.
98 * @param derin a DerInputStream holding at least one PKCS7 block.
101 public PKCS7(DerInputStream derin) throws ParsingException {
114 DerInputStream derin = new DerInputStream(bytes);
127 private void parse(DerInputStream derin)
157 private void parse(DerInputStream derin, boolean oldStyle)
209 DerInputStream dis = new DerInputStream(va
[all...]
H A DPKCS9Attribute.java38 import sun.security.util.DerInputStream;
483 DerInputStream derIn = new DerInputStream(derVal.toByteArray());
495 DerValue[] elems = new DerInputStream(content).getSet(1);
541 value = (new DerInputStream(elems[0].toByteArray())).getUTCTime();
577 new DerInputStream(elems[0].toByteArray()));
/libcore/ojluni/src/main/java/sun/security/util/
H A DDerValue.java71 public final DerInputStream data;
245 this.data = new DerInputStream(buffer);
260 length = DerInputStream.getLength((lenByte & 0xff), in);
276 length = DerInputStream.getLength(inbuf);
279 data = new DerInputStream(buffer);
288 data = new DerInputStream(buffer);
336 private DerInputStream init(byte stringTag, String value) throws IOException {
365 DerInputStream result = new DerInputStream(buffer);
373 private DerInputStream ini
[all...]
H A DDerInputStream.java59 public class DerInputStream { class
79 public DerInputStream(byte[] data) throws IOException { method in class:DerInputStream
94 public DerInputStream(byte[] data, int offset, int len) throws IOException { method in class:DerInputStream
117 DerInputStream(DerInputBuffer buf) { method in class:DerInputStream
132 public DerInputStream subStream(int len, boolean do_skip)
140 return new DerInputStream(newbuf);
144 * Return what has been written to this DerInputStream
384 DerInputStream newstr;
404 len = DerInputStream.getLength(buffer);
599 throw new IOException("DerInputStream
[all...]
/libcore/ojluni/src/main/java/sun/security/ec/
H A DECPrivateKeyImpl.java122 DerInputStream in = new DerInputStream(key);
127 DerInputStream data = derValue.data;
/libcore/ojluni/src/main/java/sun/security/x509/
H A DPrivateKeyUsageExtension.java140 DerInputStream str = new DerInputStream(this.extensionValue);
156 str = new DerInputStream(opt.toByteArray());
166 str = new DerInputStream(opt.toByteArray());
H A DSerialNumber.java71 * @param in the DerInputStream to read the SerialNumber from.
74 public SerialNumber(DerInputStream in) throws IOException {
H A DCertificateValidity.java80 DerInputStream derIn = new DerInputStream(derVal.toByteArray());
123 * @param in the DerInputStream to read the CertificateValidity from.
126 public CertificateValidity(DerInputStream in) throws IOException {
H A DEDIPartyName.java83 DerInputStream in = new DerInputStream(derValue.toByteArray());
H A DCertificatePolicySet.java57 * @param in the passed DerInputStream.
60 public CertificatePolicySet(DerInputStream in) throws IOException {
H A DUniqueIdentity.java64 * @param in the DerInputStream to read the UniqueIdentity from.
67 public UniqueIdentity(DerInputStream in) throws IOException {
H A DAccessDescription.java63 DerInputStream derIn = derValue.getData();
H A DCertificateAlgorithmId.java74 * @param in the DerInputStream to read the serial number from.
77 public CertificateAlgorithmId(DerInputStream in) throws IOException {
H A DCertificateIssuerName.java78 * @param in the DerInputStream to read the X500Name from.
81 public CertificateIssuerName(DerInputStream in) throws IOException {
H A DCertificateIssuerUniqueIdentity.java69 * @param in the DerInputStream to read the UniqueIdentity from.
72 public CertificateIssuerUniqueIdentity(DerInputStream in)
H A DCertificateSerialNumber.java78 * @param in the DerInputStream to read the serial number from.
81 public CertificateSerialNumber(DerInputStream in) throws IOException {
H A DCertificateSubjectName.java78 * @param in the DerInputStream to read the X500Name from.
81 public CertificateSubjectName(DerInputStream in) throws IOException {
H A DCertificateSubjectUniqueIdentity.java68 * @param in the DerInputStream to read the UniqueIdentity from.
71 public CertificateSubjectUniqueIdentity(DerInputStream in)
H A DCertificateX509Key.java70 * @param in the DerInputStream to read the X509Key from.
73 public CertificateX509Key(DerInputStream in) throws IOException {
H A DCRLExtensions.java79 * @param in the DerInputStream to read the Extension from, i.e. the
83 public CRLExtensions(DerInputStream in) throws CRLException {
88 private void init(DerInputStream derStrm) throws CRLException {
90 DerInputStream str = derStrm;
/libcore/ojluni/src/main/java/javax/crypto/
H A DEncryptedPrivateKeyInfo.java33 import sun.security.util.DerInputStream;
429 DerInputStream in = new DerInputStream(encodedKey);
437 DerInputStream algid = values[1].toDerInputStream();
/libcore/ojluni/src/main/java/sun/security/provider/certpath/
H A DX509CertPath.java46 import sun.security.util.DerInputStream;
186 DerInputStream dis = new DerInputStream(readAllBytes(is));
/libcore/ojluni/src/main/java/java/security/cert/
H A DX509CRLSelector.java35 import sun.security.util.DerInputStream;
631 DerInputStream in = new DerInputStream(crlNumExtVal);

Completed in 770 milliseconds

12