/libcore/luni/src/main/java/org/apache/harmony/security/x509/ |
OtherName.java | 23 package org.apache.harmony.security.x509;
|
PolicyInformation.java | 23 package org.apache.harmony.security.x509;
|
PrivateKeyUsagePeriod.java | 23 package org.apache.harmony.security.x509;
|
ReasonCode.java | 18 package org.apache.harmony.security.x509;
|
SubjectPublicKeyInfo.java | 23 package org.apache.harmony.security.x509;
|
/libcore/luni/src/main/java/org/apache/harmony/security/x509/tsp/ |
PKIStatusInfo.java | 20 package org.apache.harmony.security.x509.tsp;
|
/libcore/luni/src/test/java/libcore/javax/crypto/ |
CipherTest.java | 19 import com.android.org.bouncycastle.asn1.x509.KeyUsage;
|
/libcore/luni/src/test/java/tests/targets/security/cert/ |
CertPathBuilderTestPKIX.java | 48 "X509");
|
CertPathValidatorTestPKIX.java | 60 "X509");
|
/external/openssl/ssl/ |
d1_clnt.c | 821 pkey=X509_get_pubkey(s->session->sess_cert->peer_pkeys[SSL_PKEY_RSA_ENC].x509); 1102 sess_cert->peer_pkeys[SSL_PKEY_ECC].x509); 1463 X509 *x509=NULL; local [all...] |
ssl_locl.h | 458 X509 *x509; member in struct:cert_pkey_st 459 STACK_OF(X509) *cert_chain; 499 STACK_OF(X509) *cert_chain; /* as received from peer (not for SSL2) */ 808 int ssl_verify_cert_chain(SSL *s,STACK_OF(X509) *sk); 812 X509 *ssl_get_server_send_cert(SSL *); 814 int ssl_cert_type(X509 *x,EVP_PKEY *pkey); 880 unsigned long ssl3_output_cert_chain(SSL *s, X509 *x); [all...] |
ssl.h | 156 #include <openssl/x509.h> 432 * Peer [ 3 ] EXPLICIT X509, -- optional Peer Certificate 476 * On clients, it will be the same as sess_cert->peer_key->x509 479 X509 *peer; 768 int (*client_cert_cb)(SSL *ssl, X509 **x509, EVP_PKEY **pkey); 784 STACK_OF(X509) *extra_certs; [all...] |
s3_both.c | 125 #include <openssl/x509.h> 324 static int ssl3_add_cert_to_buf(BUF_MEM *buf, unsigned long *l, X509 *x) 343 unsigned long ssl3_output_cert_chain(SSL *s, X509 *x) 350 STACK_OF(X509) *cert_chain; 570 int ssl_cert_type(X509 *x, EVP_PKEY *pkey)
|
/external/bouncycastle/src/main/java/org/bouncycastle/asn1/x509/ |
X509Name.java | 1 package org.bouncycastle.asn1.x509; 574 * Takes an X509 dir name as a string of the format "C=AU, ST=Victoria", or 584 * Takes an X509 dir name as a string of the format "C=AU, ST=Victoria", or 597 * Takes an X509 dir name as a string of the format "C=AU, ST=Victoria", or 610 * Takes an X509 dir name as a string of the format "C=AU, ST=Victoria", or 625 * Takes an X509 dir name as a string of the format "C=AU, ST=Victoria", or 668 * Takes an X509 dir name as a string of the format "C=AU, ST=Victoria", or 870 * @param inOrder if true the order of both X509 names must be the same, [all...] |
/external/openssl/crypto/x509/ |
x509_obj.c | 1 /* crypto/x509/x509_obj.c */ 63 #include <openssl/x509.h>
|
x509_txt.c | 1 /* crypto/x509/x509_txt.c */ 68 #include <openssl/x509.h>
|
x509_v3.c | 1 /* crypto/x509/x509_v3.c */ 65 #include <openssl/x509.h>
|
/libcore/luni/src/main/java/org/apache/harmony/security/utils/ |
JarUtils.java | 75 Collection<org.apache.harmony.security.x509.Certificate> encCerts 82 for (org.apache.harmony.security.x509.Certificate encCert : encCerts) {
|
/libcore/luni/src/test/java/tests/security/cert/ |
TrustAnchorTest.java | 277 CertificateFactory certFact = CertificateFactory.getInstance("X509"); 343 CertificateFactory certFact = CertificateFactory.getInstance("X509"); 366 CertificateFactory certFact = CertificateFactory.getInstance("X509"); 488 CertificateFactory certFact = CertificateFactory.getInstance("X509"); 513 CertificateFactory certFact = CertificateFactory.getInstance("X509"); 539 CertificateFactory certFact = CertificateFactory.getInstance("X509");
|
/external/openssl/include/openssl/ |
ssl.h | 156 #include <openssl/x509.h> 432 * Peer [ 3 ] EXPLICIT X509, -- optional Peer Certificate 476 * On clients, it will be the same as sess_cert->peer_key->x509 479 X509 *peer; 768 int (*client_cert_cb)(SSL *ssl, X509 **x509, EVP_PKEY **pkey); 784 STACK_OF(X509) *extra_certs; [all...] |
safestack.h | [all...] |
/external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/ |
JDKPKCS12KeyStore.java | 66 import org.bouncycastle.asn1.x509.AlgorithmIdentifier; 67 import org.bouncycastle.asn1.x509.AuthorityKeyIdentifier; 68 import org.bouncycastle.asn1.x509.DigestInfo; 69 import org.bouncycastle.asn1.x509.SubjectKeyIdentifier; 70 import org.bouncycastle.asn1.x509.SubjectPublicKeyInfo; 71 import org.bouncycastle.asn1.x509.X509Extensions; 72 import org.bouncycastle.asn1.x509.X509ObjectIdentifiers; [all...] |
/external/openssl/apps/ |
smime.c | 72 static int save_certs(char *signerfile, STACK_OF(X509) *signers); 101 X509 *cert = NULL, *recip = NULL, *signer = NULL; 103 STACK_OF(X509) *encerts = NULL, *other = NULL; 755 STACK_OF(X509) *signers; 826 static int save_certs(char *signerfile, STACK_OF(X509) *signers)
|
/external/openssl/crypto/stack/ |
safestack.h | [all...] |
/external/apache-harmony/security/src/test/impl/java.injected/java/security/cert/ |
X509CertSelectorTest.java | 57 import org.apache.harmony.security.x509.AlgorithmIdentifier; 58 import org.apache.harmony.security.x509.CertificatePolicies; 59 import org.apache.harmony.security.x509.EDIPartyName; 60 import org.apache.harmony.security.x509.Extension; 61 import org.apache.harmony.security.x509.Extensions; 62 import org.apache.harmony.security.x509.GeneralName; 63 import org.apache.harmony.security.x509.GeneralNames; 64 import org.apache.harmony.security.x509.GeneralSubtree; 65 import org.apache.harmony.security.x509.GeneralSubtrees; 66 import org.apache.harmony.security.x509.NameConstraints [all...] |