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

/openjdk7/jdk/src/share/classes/java/security/cert/
H A DX509CertSelector.java100 private byte[] subjectKeyID; field in class:X509CertSelector
356 * If <code>subjectKeyID</code> is not <code>null</code>, it
377 * @param subjectKeyID the subject key identifier (or <code>null</code>)
380 public void setSubjectKeyIdentifier(byte[] subjectKeyID) { argument
381 if (subjectKeyID == null) {
382 this.subjectKeyID = null;
384 this.subjectKeyID = subjectKeyID.clone();
432 * {@link #setSubjectKeyIdentifier(byte[] subjectKeyID)}.
1438 if (subjectKeyID
[all...]

Completed in 34 milliseconds