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

/libcore/ojluni/src/main/java/java/security/cert/
H A DX509CertSelector.java109 private Set<String> keyPurposeSet; field in class:X509CertSelector
601 * extension. If <code>keyPurposeSet</code> is empty or <code>null</code>,
609 * @param keyPurposeSet a <code>Set</code> of key purpose OIDs in string
617 public void setExtendedKeyUsage(Set<String> keyPurposeSet) throws IOException { argument
618 if ((keyPurposeSet == null) || keyPurposeSet.isEmpty()) {
619 this.keyPurposeSet = null;
622 this.keyPurposeSet =
623 Collections.unmodifiableSet(new HashSet<String>(keyPurposeSet));
625 for (String s : this.keyPurposeSet) {
[all...]

Completed in 36 milliseconds