Searched refs:DerOutputStream (Results 1 - 25 of 83) sorted by relevance

1234

/libcore/ojluni/src/main/java/sun/security/provider/certpath/
H A DOCSPRequest.java108 DerOutputStream tmp = new DerOutputStream();
109 DerOutputStream requestsOut = new DerOutputStream();
111 DerOutputStream certIdOut = new DerOutputStream();
118 DerOutputStream extOut = new DerOutputStream();
125 DerOutputStream extsOut = new DerOutputStream();
[all...]
H A DX509CertificatePair.java37 import sun.security.util.DerOutputStream;
195 DerOutputStream tmp = new DerOutputStream();
269 private void emit(DerOutputStream out)
272 DerOutputStream tagged = new DerOutputStream();
275 DerOutputStream tmp = new DerOutputStream();
282 DerOutputStream tmp = new DerOutputStream();
[all...]
/libcore/ojluni/src/main/java/sun/security/x509/
H A DCertificatePolicyMap.java94 * Write the CertificatePolicyMap to the DerOutputStream.
96 * @param out the DerOutputStream to write the object to.
99 public void encode(DerOutputStream out) throws IOException {
100 DerOutputStream tmp = new DerOutputStream();
H A DAuthorityInfoAccessExtension.java33 import sun.security.util.DerOutputStream;
147 * Write the extension to the DerOutputStream.
149 * @param out the DerOutputStream to write the extension to.
153 DerOutputStream tmp = new DerOutputStream();
223 DerOutputStream ads = new DerOutputStream();
227 DerOutputStream seq = new DerOutputStream();
H A DCertificatePoliciesExtension.java33 import sun.security.util.DerOutputStream;
92 DerOutputStream os = new DerOutputStream();
93 DerOutputStream tmp = new DerOutputStream();
173 * Write the extension to the DerOutputStream.
175 * @param out the DerOutputStream to write the extension to.
179 DerOutputStream tmp = new DerOutputStream();
H A DEDIPartyName.java119 * Encode the EDI party name into the DerOutputStream.
124 public void encode(DerOutputStream out) throws IOException {
125 DerOutputStream tagged = new DerOutputStream();
126 DerOutputStream tmp = new DerOutputStream();
129 DerOutputStream tmp2 = new DerOutputStream();
H A DGeneralSubtree.java190 * @params out the DerOutputStream to encode this object to.
192 public void encode(DerOutputStream out) throws IOException {
193 DerOutputStream seq = new DerOutputStream();
198 DerOutputStream tmp = new DerOutputStream();
204 DerOutputStream tmp = new DerOutputStream();
H A DSubjectInfoAccessExtension.java34 import sun.security.util.DerOutputStream;
152 * Write the extension to the DerOutputStream.
154 * @param out the DerOutputStream to write the extension to.
158 DerOutputStream tmp = new DerOutputStream();
229 DerOutputStream ads = new DerOutputStream();
233 DerOutputStream seq = new DerOutputStream();
H A DPolicyConstraintsExtension.java85 DerOutputStream tagged = new DerOutputStream();
86 DerOutputStream seq = new DerOutputStream();
89 DerOutputStream tmp = new DerOutputStream();
95 DerOutputStream tmp = new DerOutputStream();
196 * Write the extension to the DerOutputStream.
198 * @param out the DerOutputStream t
[all...]
H A DCertificateIssuerExtension.java32 import sun.security.util.DerOutputStream;
82 DerOutputStream os = new DerOutputStream();
183 DerOutputStream tmp = new DerOutputStream();
H A DIssuingDistributionPointExtension.java34 import sun.security.util.DerOutputStream;
232 * DerOutputStream.
238 DerOutputStream tmp = new DerOutputStream();
391 DerOutputStream tagged = new DerOutputStream();
394 DerOutputStream tmp = new DerOutputStream();
401 DerOutputStream tmp = new DerOutputStream();
[all...]
H A DAuthorityKeyIdentifierExtension.java88 DerOutputStream seq = new DerOutputStream();
89 DerOutputStream tmp = new DerOutputStream();
91 DerOutputStream tmp1 = new DerOutputStream();
98 DerOutputStream tmp1 = new DerOutputStream();
107 DerOutputStream tmp1 = new DerOutputStream();
[all...]
H A DDistributionPoint.java32 import sun.security.util.DerOutputStream;
275 * Write the DistributionPoint value to the DerOutputStream.
277 * @param out the DerOutputStream to write the extension to.
280 public void encode(DerOutputStream out) throws IOException {
281 DerOutputStream tagged = new DerOutputStream();
285 DerOutputStream distributionPoint = new DerOutputStream();
287 DerOutputStream derOut = new DerOutputStream();
[all...]
H A DPolicyMappingsExtension.java75 DerOutputStream os = new DerOutputStream();
76 DerOutputStream tmp = new DerOutputStream();
153 DerOutputStream tmp = new DerOutputStream();
H A DDeltaCRLIndicatorExtension.java107 * Writes the extension to the DerOutputStream.
109 * @param out the DerOutputStream to write the extension to.
113 DerOutputStream tmp = new DerOutputStream();
H A DX400Address.java30 import sun.security.util.DerOutputStream;
367 * Encode the X400 name into the DerOutputStream.
372 public void encode(DerOutputStream out) throws IOException {
H A DDistributionPointName.java32 import sun.security.util.DerOutputStream;
165 * Encodes the distribution point name and writes it to the DerOutputStream.
170 public void encode(DerOutputStream out) throws IOException {
172 DerOutputStream theChoice = new DerOutputStream();
H A DGeneralNameInterface.java69 * Encode the name to the specified DerOutputStream.
71 * @param out the DerOutputStream to encode the GeneralName to.
75 void encode(DerOutputStream out) throws IOException;
H A DSubjectKeyIdentifierExtension.java78 DerOutputStream os = new DerOutputStream();
129 DerOutputStream tmp = new DerOutputStream();
H A DCertificatePolicySet.java84 * @param out the DerOutputStream to encode the data to.
86 public void encode(DerOutputStream out) throws IOException {
87 DerOutputStream tmp = new DerOutputStream();
H A DGeneralNames.java109 * Write the extension to the DerOutputStream.
111 * @param out the DerOutputStream to write the extension to.
114 public void encode(DerOutputStream out) throws IOException {
119 DerOutputStream temp = new DerOutputStream();
H A DInhibitAnyPolicyExtension.java33 import sun.security.util.DerOutputStream;
98 DerOutputStream out = new DerOutputStream();
170 * @param out the DerOutputStream to encode the extension to.
173 DerOutputStream tmp = new DerOutputStream();
H A DCRLDistributionPointsExtension.java34 import sun.security.util.DerOutputStream;
197 * Write the extension to the DerOutputStream.
199 * @param out the DerOutputStream to write the extension to.
207 * Write the extension to the DerOutputStream.
213 DerOutputStream tmp = new DerOutputStream();
284 DerOutputStream pnts = new DerOutputStream();
288 DerOutputStream seq = new DerOutputStream();
[all...]
H A DExtension.java149 DerOutputStream dos1 = new DerOutputStream();
150 DerOutputStream dos2 = new DerOutputStream();
163 * Write the extension to the DerOutputStream.
165 * @param out the DerOutputStream to write the extension to.
168 public void encode(DerOutputStream out) throws IOException {
175 DerOutputStream dos = new DerOutputStream();
/libcore/ojluni/src/main/java/sun/security/util/
H A DDerOutputStream.java54 public class DerOutputStream class in inherits:ByteArrayOutputStream,DerEncoder
61 public DerOutputStream(int size) { super(size); } method in class:DerOutputStream
66 public DerOutputStream() { } method in class:DerOutputStream
92 public void write(byte tag, DerOutputStream out) throws IOException {
115 public void writeImplicit(byte tag, DerOutputStream value)
301 DerOutputStream bytes = new DerOutputStream();
318 DerOutputStream bytes = new DerOutputStream();
375 DerOutputStream[] stream
[all...]

Completed in 158 milliseconds

1234