HomeSort by relevance Sort by last modified time
    Searched defs:Certificate (Results 1 - 11 of 11) sorted by null

  /libcore/luni/src/main/java/java/security/
Certificate.java 25 * {@code Certificate} represents an identity certificate, such as X.509 or PGP.
26 * Note: A {@code Certificate} instances does not make any statement about the
31 * @see java.security.cert.Certificate
34 public interface Certificate {
37 * Decodes a certificate from the given {@code InputStream}. The format of
44 * if certificate information is incomplete or incorrect.
53 * Encodes this certificate to an output stream. The
58 * the {@code OutputStream} to encode this certificate to.
60 * if certificate information is incomplete or incorrect
    [all...]
  /libcore/luni/src/main/java/javax/security/cert/
Certificate.java 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
    [all...]
  /libcore/luni/src/main/java/java/security/cert/
Certificate.java 37 public abstract class Certificate implements Serializable {
41 // The standard name of the certificate type
45 * Creates a new {@code Certificate} with the specified type.
48 * the certificate type.
50 protected Certificate(String type) {
55 * Returns the certificate type.
57 * @return the certificate type.
64 * Compares the argument to the certificate, and returns {@code true} if they
80 if (other instanceof Certificate) {
84 ((Certificate)other).getEncoded())
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/security/x509/
Certificate.java 34 * with the X.509 certificate. Its ASN notation is as follows
37 * Certificate and Certificate Revocation List (CRL) Profile.
41 * Certificate ::= SEQUENCE {
48 public class Certificate {
56 // the ASN.1 encoded form of Certificate
65 public Certificate(TBSCertificate tbsCertificate,
82 private Certificate(TBSCertificate tbsCertificate,
117 buffer.append("X.509 Certificate:\n[\n");
134 encoding = Certificate.ASN1.encode(this)
    [all...]
  /prebuilt/sdk/5/
android.jar 
  /prebuilt/sdk/8/
android.jar 
  /prebuilt/sdk/9/
android.jar 
  /prebuilt/sdk/10/
android.jar 
  /prebuilt/sdk/6/
android.jar 
  /prebuilt/sdk/7/
android.jar 
  /prebuilt/sdk/4/
android.jar 

Completed in 117 milliseconds