Home | History | Annotate | Download | only in cert

Lines Matching defs:Certificate

38 public abstract class Certificate {
41 * Creates a new {@code Certificate}.
43 public Certificate() {}
46 * Compares the argument to this Certificate. If both have the same bytes
50 * the {@code Certificate} to compare with this object
52 * {@code Certificate}, <code>false</code> otherwise
59 if (!(obj instanceof Certificate)) {
62 Certificate object = (Certificate) obj;
91 * Returns the encoded representation for this certificate.
93 * @return the encoded representation for this certificate.
101 * Verifies that this certificate was signed with the given public key.
122 * Verifies that this certificate was signed with the given public key. Uses
154 * Returns the public key corresponding to this certificate.
156 * @return the public key corresponding to this certificate.