HomeSort by relevance Sort by last modified time
    Searched full:x509 (Results 301 - 325 of 650) sorted by null

<<11121314151617181920>>

  /libcore/luni/src/main/java/org/apache/harmony/security/provider/crypto/
DSAPublicKeyImpl.java 43 import org.apache.harmony.security.x509.AlgorithmIdentifier;
44 import org.apache.harmony.security.x509.SubjectPublicKeyInfo;
  /libcore/luni/src/main/java/org/apache/harmony/security/x509/tsp/
TimeStampReq.java 20 package org.apache.harmony.security.x509.tsp;
31 import org.apache.harmony.security.x509.Extensions;
  /libcore/support/src/test/java/libcore/java/security/
TestKeyStore.java 20 import com.android.org.bouncycastle.asn1.x509.BasicConstraints;
21 import com.android.org.bouncycastle.asn1.x509.GeneralName;
22 import com.android.org.bouncycastle.asn1.x509.GeneralNames;
23 import com.android.org.bouncycastle.asn1.x509.GeneralSubtree;
24 import com.android.org.bouncycastle.asn1.x509.KeyUsage;
25 import com.android.org.bouncycastle.asn1.x509.NameConstraints;
26 import com.android.org.bouncycastle.asn1.x509.X509Extensions;
28 import com.android.org.bouncycastle.x509.X509V3CertificateGenerator;
    [all...]
StandardNames.java 72 public static final String KEY_MANAGER_FACTORY_DEFAULT = (IS_RI) ? "SunX509" : "X509";
73 public static final String TRUST_MANAGER_FACTORY_DEFAULT = (IS_RI) ? "PKIX" : "X509";
311 provide("KeyManagerFactory", "X509");
329 // different names: JSSE Reference Guide says PKIX aka X509
331 provide("TrustManagerFactory", "X509");
347 // Harmony has X.509, BouncyCastle X509
349 provide("CertificateFactory", "X509");
    [all...]
  /libcore/support/src/test/java/tests/support/
Support_TestProvider.java 116 put("CertificateFactory.X509",
119 put("Alg.Alias.CertificateFactory.X.509", "X509");
  /build/tools/releasetools/
sign_target_files_apks 215 extra_recovery_keys = [OPTIONS.key_map.get(k, k) + ".x509.pem"
224 m = re.match(r"^(.*)\.x509\.pem$", k)
228 mapped_keys.append(OPTIONS.key_map.get(k, k) + ".x509.pem")
237 OPTIONS.key_map.get(devkey, devkey) + ".x509.pem")
253 # SystemUpdateActivity uses the x509.pem version of the keys, but
  /external/openssl/apps/
apps.h 118 #include <openssl/x509.h>
237 int dump_cert_text(BIO *out, X509 *x);
243 int copy_extensions(X509 *x, X509_REQ *req, int copy_type);
246 X509 *load_cert(BIO *err, const char *file, int format,
252 STACK_OF(X509) *load_certs(BIO *err, const char *file, int format,
crl.c 65 #include <openssl/x509.h>
254 "Error initialising X509 store\n");
265 pkey = X509_get_pubkey(xobj.data.x509);
pkcs7.c 67 #include <openssl/x509.h>
245 STACK_OF(X509) *certs=NULL;
265 X509 *x;
  /external/openssl/crypto/x509v3/
v3_conf.c 66 #include <openssl/x509.h>
347 X509 *cert)
446 void X509V3_set_ctx(X509V3_CTX *ctx, X509 *issuer, X509 *subj, X509_REQ *req,
500 char *section, X509 *cert)
  /external/wpa_supplicant/
tls_openssl.c 365 X509 *cert = NULL;
399 wpa_printf(MSG_INFO, "CryptoAPI: Could not process X509 DER "
470 X509 *cert;
506 "X509 DER encoding for CA cert");
969 static int tls_match_altsubject_component(X509 *cert, int type,
991 static int tls_match_altsubject(X509 *cert, const char *match)
1037 X509 *err_cert;
1090 "Failed add lookup for X509 store");
1130 X509 *cert = d2i_X509(NULL, (OPENSSL_d2i_TYPE) &ca_cert_blob,
1175 if (info->x509) {
1346 X509 *x509 = NULL; local
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/openssl/
PEMReader.java 48 import org.bouncycastle.asn1.x509.AlgorithmIdentifier;
49 import org.bouncycastle.asn1.x509.RSAPublicKeyStructure;
50 import org.bouncycastle.asn1.x509.SubjectPublicKeyInfo;
59 import org.bouncycastle.x509.X509V2AttributeCertificate;
63 * X509 certificates, PKCS8 encoded keys and PKCS7 objects.
139 parsers.put("X509 CERTIFICATE", new X509CertificateParser(asymProvider));
140 parsers.put("X509 CRL", new X509CRLParser(asymProvider));
  /external/openssl/crypto/store/
store.h 72 #include <openssl/x509.h>
143 STORE_OBJECT_TYPE_X509_CERTIFICATE= 0x01, /* X509 * */
220 X509 *certificate;
221 } x509; member in union:STORE_OBJECT_st::__anon8859
236 X509 *STORE_get_certificate(STORE *e, OPENSSL_ITEM attributes[],
238 int STORE_store_certificate(STORE *e, X509 *data, OPENSSL_ITEM attributes[],
249 X509 *STORE_list_certificate_next(STORE *e, void *handle);
  /external/openssl/ssl/
s3_clnt.c 1047 X509 *x=NULL;
1050 STACK_OF(X509) *sk=NULL;
1193 if (sc->peer_pkeys[i].x509 != NULL)
1194 X509_free(sc->peer_pkeys[i].x509);
1195 sc->peer_pkeys[i].x509=x;
2867 X509 *x509=NULL; local
    [all...]
  /external/chromium/net/socket/
ssl_client_socket_openssl.cc 346 static int ClientCertCallback(SSL* ssl, X509** x509, EVP_PKEY** pkey) {
349 return socket->ClientCertRequestCallback(ssl, x509, pkey);
523 X509** x509,
527 DCHECK(*x509 == NULL);
544 *x509 = X509Certificate::DupOSCertHandle(
876 crypto::ScopedOpenSSL<X509, X509_free> cert(SSL_get_peer_certificate(ssl_));
    [all...]
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
Security2Test.java 255 filter.put("CertificateFactory.X509", "");
258 assertEquals("Filter : <CertificateFactory.X509>",
261 assertEquals("Filter : <CertificateFactory.X509>",
  /external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/
JDKKeyFactory.java 37 import org.bouncycastle.asn1.x509.SubjectPublicKeyInfo;
562 // public static class X509
565 // public X509()
RFC3280CertPathUtilities.java 40 import org.bouncycastle.asn1.x509.BasicConstraints;
41 import org.bouncycastle.asn1.x509.CRLDistPoint;
42 import org.bouncycastle.asn1.x509.CRLReason;
43 import org.bouncycastle.asn1.x509.DistributionPoint;
44 import org.bouncycastle.asn1.x509.DistributionPointName;
45 import org.bouncycastle.asn1.x509.GeneralName;
46 import org.bouncycastle.asn1.x509.GeneralNames;
47 import org.bouncycastle.asn1.x509.GeneralSubtree;
48 import org.bouncycastle.asn1.x509.IssuingDistributionPoint;
49 import org.bouncycastle.asn1.x509.NameConstraints
    [all...]
  /external/openssl/crypto/x509/
x509_req.c 1 /* crypto/x509/x509_req.c */
65 #include <openssl/x509.h>
70 X509_REQ *X509_to_X509_REQ(X509 *x, EVP_PKEY *pkey, const EVP_MD *md)
  /external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/
CertificateMessageTest.java 84 CertificateFactory certFactory = CertificateFactory.getInstance("X509");
CertificateRequestTest.java 58 CertificateFactory certFactory = CertificateFactory.getInstance("X509");
TrustManagerImplTest.java 66 CertificateFactory certFactory = CertificateFactory.getInstance("X509");
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/pkcs/
RSAESOAEPparams.java 13 import org.bouncycastle.asn1.x509.AlgorithmIdentifier;
RSASSAPSSparams.java 13 import org.bouncycastle.asn1.x509.AlgorithmIdentifier;
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/x509/
AttributeCertificateInfo.java 1 package org.bouncycastle.asn1.x509;

Completed in 793 milliseconds

<<11121314151617181920>>