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

1 2 3

  /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 40 struct Certificate {
46 Certificate(int hash_len_,
68 int verify_file(const unsigned char* addr, size_t length, const std::vector<Certificate>& keys,
71 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 Certificate}, 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...]
  /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...]
  /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,
  /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");
  /libcore/ojluni/src/main/java/java/security/cert/
Certificate.java 41 * An identity certificate is a binding of a principal to a public key which
47 * certificates, such as X.509 and PGP, share general certificate
52 * subclassing the Certificate class, even though they contain different
62 public abstract class Certificate implements java.io.Serializable {
66 // the certificate type
73 * Creates a certificate of the specified type.
75 * @param type the standard name of the certificate type.
79 * for information about standard certificate types.
81 protected Certificate(String type) {
86 * Returns the type of this certificate
    [all...]
  /prebuilts/go/darwin-x86/src/encoding/asn1/
asn1_test.go 511 type Certificate struct {
550 // This is a minimal, self-signed certificate that should parse correctly.
551 var cert Certificate
561 // This is the paypal NUL-hack certificate. It should fail to parse because
564 var cert Certificate
628 var derEncodedSelfSignedCert = Certificate{
    [all...]
  /prebuilts/go/linux-x86/src/encoding/asn1/
asn1_test.go 511 type Certificate struct {
550 // This is a minimal, self-signed certificate that should parse correctly.
551 var cert Certificate
561 // This is the paypal NUL-hack certificate. It should fail to parse because
564 var cert Certificate
628 var derEncodedSelfSignedCert = Certificate{
    [all...]
  /frameworks/base/media/java/android/media/
MediaDrm.java 136 * Specify no certificate type
143 * Specify X.509 certificate type
459 * This event type indicates that the app needs to request a certificate from
    [all...]
  /external/boringssl/src/ssl/test/runner/
common.go 134 // Certificate types (for certificateRequestMsg)
136 CertTypeRSASign = 1 // A certificate containing an RSA key
137 CertTypeDSSSign = 2 // A certificate containing a DSA key
138 CertTypeRSAFixedDH = 3 // A certificate containing a static DH key
139 CertTypeDSSFixedDH = 4 // A certificate containing a static DH key
142 CertTypeECDSASign = 64 // A certificate containing an ECDSA-capable public key, signed with ECDSA.
143 CertTypeRSAFixedECDH = 65 // A certificate containing an ECDH-capable public key, signed with RSA.
144 CertTypeECDSAFixedECDH = 66 // A certificate containing an ECDH-capable public key, signed with ECDSA.
217 PeerCertificates []*x509.Certificate // certificate chain presented by remote pee
    [all...]
  /prebuilts/go/darwin-x86/src/crypto/tls/
common.go 114 // Certificate types (for certificateRequestMsg)
116 certTypeRSASign = 1 // A certificate containing an RSA key
117 certTypeDSSSign = 2 // A certificate containing a DSA key
118 certTypeRSAFixedDH = 3 // A certificate containing a static DH key
119 certTypeDSSFixedDH = 4 // A certificate containing a static DH key
122 certTypeECDSASign = 64 // A certificate containing an ECDSA-capable public key, signed with ECDSA.
123 certTypeRSAFixedECDH = 65 // A certificate containing an ECDH-capable public key, signed with RSA.
124 certTypeECDSAFixedECDH = 66 // A certificate containing an ECDH-capable public key, signed with ECDSA.
169 PeerCertificates []*x509.Certificate // certificate chain presented by remote pee
    [all...]
  /prebuilts/go/linux-x86/src/crypto/tls/
common.go 114 // Certificate types (for certificateRequestMsg)
116 certTypeRSASign = 1 // A certificate containing an RSA key
117 certTypeDSSSign = 2 // A certificate containing a DSA key
118 certTypeRSAFixedDH = 3 // A certificate containing a static DH key
119 certTypeDSSFixedDH = 4 // A certificate containing a static DH key
122 certTypeECDSASign = 64 // A certificate containing an ECDSA-capable public key, signed with ECDSA.
123 certTypeRSAFixedECDH = 65 // A certificate containing an ECDH-capable public key, signed with RSA.
124 certTypeECDSAFixedECDH = 66 // A certificate containing an ECDH-capable public key, signed with ECDSA.
169 PeerCertificates []*x509.Certificate // certificate chain presented by remote pee
    [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 267 CRYPT_XML_DATA_BLOB Certificate;
  /prebuilts/go/darwin-x86/src/crypto/x509/
x509.go 119 type certificate struct { type
625 // A Certificate represents an X.509 certificate.
626 type Certificate struct {
627 Raw []byte // Complete ASN.1 DER content (certificate, signature algorithm and signature).
628 RawTBSCertificate []byte // Certificate part of raw ASN.1 DER content.
714 // a certificate. For example: checking a signature when the public key isn't a
715 // certificate signing key.
719 return "x509: invalid signature: parent certificate cannot sign this kind of certificate"
    [all...]
  /prebuilts/go/linux-x86/src/crypto/x509/
x509.go 119 type certificate struct { type
625 // A Certificate represents an X.509 certificate.
626 type Certificate struct {
627 Raw []byte // Complete ASN.1 DER content (certificate, signature algorithm and signature).
628 RawTBSCertificate []byte // Certificate part of raw ASN.1 DER content.
714 // a certificate. For example: checking a signature when the public key isn't a
715 // certificate signing key.
719 return "x509: invalid signature: parent certificate cannot sign this kind of certificate"
    [all...]
  /external/pdfium/xfa/fxfa/
fxfa_basic.h 871 Certificate,
  /prebuilts/tools/common/m2/repository/com/amazonaws/aws-java-sdk-dms/1.11.18/
aws-java-sdk-dms-1.11.18.jar 
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/13/
android.jar 
  /prebuilts/sdk/16/
android.jar 
  /prebuilts/sdk/22/
android.jar 

Completed in 343 milliseconds

1 2 3