Searched defs:subjectDN (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/security/provider/certpath/
H A DReverseState.java62 X500Principal subjectDN; field in class:ReverseState
130 sb.append("\n subjectDN of last cert: " + subjectDN);
266 * @param subjectDN the subject distinguished name of the trusted CA
268 private void updateState(PublicKey pubKey, X500Principal subjectDN) { argument
271 this.subjectDN = subjectDN;
290 subjectDN = cert.getSubjectX500Principal();
/openjdk7/jdk/src/share/classes/java/security/cert/
H A DX509CertSelector.java310 * If <code>subjectDN</code> is not <code>null</code>, it should contain a
313 * @param subjectDN a distinguished name in RFC 2253 format
317 public void setSubject(String subjectDN) throws IOException { argument
318 if (subjectDN == null) {
321 subject = new X500Name(subjectDN).asX500Principal();
331 * If <code>subjectDN</code> is not <code>null</code>, it should contain a
336 * @param subjectDN a byte array containing the distinguished name in
340 public void setSubject(byte[] subjectDN) throws IOException { argument
342 subject = (subjectDN == null ? null : new X500Principal(subjectDN));
[all...]

Completed in 107 milliseconds