Searched defs:certificates (Results 1 - 15 of 15) sorted by relevance

/external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/cert/
H A DMyCertPath.java38 * my certificates list
40 private final Vector certificates; field in class:MyCertPath
59 certificates = new Vector();
60 certificates.add(new MyCertificate("MyEncoding", encoding));
66 * @return certificates list
70 return Collections.unmodifiableList(certificates);
H A DMyCertificateFactorySpi.java121 public CertPath engineGenerateCertPath(List certificates) argument
123 if (certificates == null) {
125 throw new NullPointerException("certificates is null");
/external/webkit/Source/WebCore/platform/network/
H A DCredential.cpp60 , m_certificates(original.certificates())
97 Credential::Credential(SecIdentityRef identity, CFArrayRef certificates, CredentialPersistence persistence) argument
102 , m_certificates(certificates)
112 CFArrayRef Credential::certificates() const function in class:WebCore::Credential
138 // FIXME: Is pointer comparison of the identity and certificates properties sufficient?
142 if (a.certificates() != b.certificates())
145 // We only need to check identity and certificates to compare
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/x509/
H A DPKIXCertPath.java44 * CertPath implementation for X.509 certificates.
61 private List certificates; field in class:PKIXCertPath
147 // make sure all certificates are accounted for.
156 PKIXCertPath(List certificates) argument
159 this.certificates = sortCerts(new ArrayList(certificates));
184 certificates = new ArrayList();
190 certificates.add(0, certFactory.generateCertificate(
197 certificates = new ArrayList();
202 certificates
[all...]
H A DCertificateFactory.java31 * class for dealing with X509 certificates.
34 * base 64 encoded certs, as well as the BER binaries of certificates and some classes of PKCS#7
227 * Returns a (possibly empty) collection view of the certificates
356 List certificates)
359 Iterator iter = certificates.iterator();
372 return new PKIXCertPath(certificates);
355 engineGenerateCertPath( List certificates) argument
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/cms/
H A DSignedData.java27 private ASN1Set certificates; field in class:SignedData
51 ASN1Set certificates,
55 this.version = calculateVersion(contentInfo.getContentType(), certificates, crls, signerInfos);
58 this.certificates = certificates;
62 this.certsBer = certificates instanceof BERSet;
67 // IF ((certificates is present) AND
68 // (any certificates with a type of other are present)) OR
73 // IF (certificates is present) AND
74 // (any version 2 attribute certificates ar
48 SignedData( ASN1Set digestAlgorithms, ContentInfo contentInfo, ASN1Set certificates, ASN1Set crls, ASN1Set signerInfos) argument
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/pkcs/
H A DSignedData.java24 private ASN1Set certificates; field in class:SignedData
54 certificates = _certificates;
83 certificates = ASN1Set.getInstance(tagged, false);
116 return certificates;
136 * certificates
152 if (certificates != null)
154 v.add(new DERTaggedObject(false, 0, certificates));
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
H A DCMSSignedData.java251 * return a X509Store containing the attribute certificates, if any, contained
256 * @return a store of attribute certificates
271 * return a X509Store containing the attribute certificates, if any, contained
276 * @return a store of attribute certificates
295 * return a X509Store containing the public key certificates, if any, contained
300 * @return a store of public key certificates
315 * return a X509Store containing the public key certificates, if any, contained
320 * @return a store of public key certificates
383 * return a CertStore containing the certificates and CRLs associated with
400 * return a CertStore containing the certificates an
680 replaceCertificatesAndCRLs( CMSSignedData signedData, Store certificates, Store attrCerts, Store crls) argument
[all...]
/external/chromium/net/base/
H A Dcert_database_nss.cc177 const CertificateList& certificates) const {
178 DCHECK_GT(certificates.size(), 0U);
180 if (certificates.size() == 1)
181 return certificates[0].get();
183 X509Certificate* cert0 = certificates[0];
184 X509Certificate* cert1 = certificates[1];
185 X509Certificate* certn_2 = certificates[certificates.size() - 2];
186 X509Certificate* certn_1 = certificates[certificates
199 ImportCACerts(const CertificateList& certificates, unsigned int trust_bits, ImportCertFailureList* not_imported) argument
211 ImportServerCert(const CertificateList& certificates, ImportCertFailureList* not_imported) argument
[all...]
H A Dx509_certificate.cc45 // The PEM block header used for DER certificates
263 // If an intermediate fails to load, it and any certificates after it
289 OSCertHandles certificates; local
312 // also be DER encoded certificates wrapped inside of PEM blocks.
314 certificates.push_back(handle);
322 for (size_t i = 0; certificates.empty() &&
325 certificates = CreateOSCertHandlesFromBytes(decoded.c_str(),
332 // PEM-encoded DER certificates. The case of FORMAT_PEM_CERT_SEQUENCE
341 for (size_t i = 0; certificates.empty() &&
344 certificates
[all...]
/external/okhttp/src/main/java/libcore/net/http/
H A DHttpResponseCache.java362 * is the length of the peer certificate chain. These certificates are
365 * certificates are also base64-encoded and appear each on their own
488 private void writeCertArray(Writer writer, Certificate[] certificates) throws IOException { argument
489 if (certificates == null) {
494 writer.write(Integer.toString(certificates.length) + '\n');
495 for (Certificate certificate : certificates) {
/external/okhttp/src/test/java/libcore/net/http/
H A DURLConnectionTest.java2064 private String certificatesToString(X509Certificate[] certificates) { argument
2066 for (X509Certificate certificate : certificates) {
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.osgi_3.6.1.R36x_v20100806.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.osgi_3.6.2.R36x_v20101103.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 642 milliseconds