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

1 2

  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cert/jcajce/
JcaX509CertificateHolder.java 6 import org.bouncycastle.asn1.x509.Certificate;
18 * @param cert certificate to be used a the source for the holder creation.
19 * @throws CertificateEncodingException if there is a problem extracting the certificate information.
24 super(Certificate.getInstance(cert.getEncoded()));
  /libcore/ojluni/src/main/java/java/security/
Certificate.java 34 * An identity certificate is a guarantee by a principal that
42 * share general certificate functionality (the need to encode and
47 * implementation of PGP certificates can both utilize the Certificate
53 * semantics of its own. In particular, a Certificate object does not
56 * the certificate and satisfy itself of its validity.
59 * @deprecated A new certificate handling package is created in the Java platform.
60 * This Certificate interface is entirely deprecated and
63 * @see java.security.cert.Certificate
66 public interface Certificate {
69 * Returns the guarantor of the certificate, that is, the principa
    [all...]
  /bootable/recovery/
verifier.h 39 struct Certificate {
45 Certificate(int hash_len_,
67 const std::vector<Certificate>& keys);
69 bool load_keys(const char* filename, std::vector<Certificate>& certs);
  /libcore/ojluni/src/main/java/javax/security/cert/
Certificate.java 37 * An identity certificate is a guarantee by a principal that
43 * certificates, such as X.509 and PGP, share general certificate
48 * subclassing the Certificate class, even though they contain different
55 * use the standard Java SE certificate classes located in
63 public abstract class Certificate {
66 * Compares this certificate for equality with the specified
68 * <code>instanceof</code> <code>Certificate</code>, then
70 * encoded form of this certificate.
72 * @param other the object to test for equality with this certificate.
79 if (!(other instanceof Certificate))
    [all...]
  /frameworks/base/media/lib/signer/java/com/android/mediadrm/signer/
MediaDrmSigner.java 23 * Provides certificate request generation, response handling and
30 * Specify X.509 certificate type
35 * Contains the opaque data an app uses to request a certificate from a provisioning
53 * Get the default URL to use when sending the certificate request
55 * certificate server URL obtained from other sources.
63 * Contains the wrapped private key and public certificate data associated
64 * with a certificate.
66 public final static class Certificate {
67 private final MediaDrm.Certificate mCertificate;
69 Certificate(MediaDrm.Certificate certificate)
    [all...]
  /frameworks/base/packages/Osu/src/com/android/anqp/eap/
Credential.java 20 Certificate,
  /libcore/ojluni/src/main/java/java/security/cert/
Certificate.java 40 * An identity certificate is a binding of a principal to a public key which
46 * certificates, such as X.509 and PGP, share general certificate
51 * subclassing the Certificate class, even though they contain different
61 public abstract class Certificate implements java.io.Serializable {
65 // the certificate type
69 * Creates a certificate of the specified type.
71 * @param type the standard name of the certificate type.
75 * for information about standard certificate types.
77 protected Certificate(String type) {
82 * Returns the type of this certificate
    [all...]
  /cts/tools/utils/
certificates.py 21 class Certificate(object):
49 return Certificate(cert, key)
77 return Certificate(cert, key)
81 a = Certificate.create("Root A")
82 a_sha1 = Certificate.create("Root A", key=a.key, digest="sha1")
83 b = Certificate.create("Root B")
84 a_to_b = Certificate.create("Root A", b, a.key)
85 b_to_a = Certificate.create("Root B", a, b.key)
86 leaf1 = Certificate.create("Leaf", a)
87 intermediate_a = Certificate.create("intermediate", a
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
Certificate.java 14 * Certificate ::= SEQUENCE {
21 public class Certificate
29 public static Certificate getInstance(
36 public static Certificate getInstance(
39 if (obj instanceof Certificate)
41 return (Certificate)obj;
45 return new Certificate(ASN1Sequence.getInstance(obj));
51 private Certificate(
68 throw new IllegalArgumentException("sequence wrong size for a certificate");
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/anqp/eap/
Credential.java 20 Certificate,
  /frameworks/base/media/java/android/media/
MediaDrm.java 135 * Specify no certificate type
142 * Specify X.509 certificate type
458 * This event type indicates that the app needs to request a certificate from
829 * Contains the opaque data an app uses to request a certificate from a provisioning
    [all...]
  /prebuilts/tools/common/mkidentity/
mkidentity-prebuilt.jar 
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
cryptxml.h 263 CRYPT_XML_DATA_BLOB Certificate;
  /external/chromium-trace/catapult/third_party/gsutil/third_party/pyasn1-modules/pyasn1_modules/
rfc2459.py 222 # certificate and CRL specific structures begin here
282 class Certificate(univ.Sequence):
    [all...]
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/13/
android.jar 
  /prebuilts/sdk/16/
android.jar 
  /prebuilts/sdk/22/
android.jar 
  /prebuilts/sdk/23/
android.jar 
  /prebuilts/sdk/24/
android.jar 
  /prebuilts/sdk/5/
android.jar 
  /prebuilts/sdk/8/
android.jar 
  /prebuilts/sdk/9/
android.jar 
  /prebuilts/sdk/system_23/
android.jar 
  /prebuilts/tools/common/api-versions/android-1/
android.jar 

Completed in 1066 milliseconds

1 2