Home | History | Annotate | Download | only in security

Lines Matching defs:certificates

43  * <p>An Identity also has a set of certificates (all certifying its own
44 * public key). The Principal names specified in these certificates need
95 * The certificates for this identity.
99 Vector<Certificate> certificates;
166 * identity's certificates are removed by this operation.
189 certificates = new Vector<Certificate>();
251 if (certificates == null) {
252 certificates = new Vector<Certificate>();
262 certificates.addElement(certificate);
299 if (certificates != null) {
301 // not contained within |certificates|.
302 if (certificate == null || !certificates.contains(certificate)) {
305 certificates.removeElement(certificate);
310 * Returns a copy of all the certificates for this identity.
312 * @return a copy of all the certificates for this identity.
314 public Certificate[] certificates() {
315 if (certificates == null) {
318 int len = certificates.size();
320 certificates.copyInto(certs);
470 if (certificates == null) {
471 return "\tno certificates";
476 for (Certificate cert : certificates) {