Home | History | Annotate | Download | only in jsse

Lines Matching refs:anchors

42     public TrustedCertificateIndex(Set<TrustAnchor> anchors) {
43 index(anchors);
46 private void index(Set<TrustAnchor> anchors) {
47 for (TrustAnchor anchor : anchors) {
68 List<TrustAnchor> anchors = subjectToTrustAnchors.get(subject);
69 if (anchors == null) {
70 anchors = new ArrayList<TrustAnchor>(1);
71 subjectToTrustAnchors.put(subject, anchors);
73 anchors.add(anchor);
83 public void reset(Set<TrustAnchor> anchors) {
86 index(anchors);
93 List<TrustAnchor> anchors = subjectToTrustAnchors.get(issuer);
94 if (anchors == null) {
98 for (TrustAnchor anchor : anchors) {
119 List<TrustAnchor> anchors = subjectToTrustAnchors.get(subject);
120 if (anchors == null) {
123 return findBySubjectAndPublicKey(cert, anchors);
128 Collection<TrustAnchor> anchors) {
130 for (TrustAnchor anchor : anchors) {