HomeSort by relevance Sort by last modified time
    Searched defs:crl (Results 26 - 50 of 70) sorted by null

12 3

  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/java/security/cert/
CertificateFactory_ImplTest.java 139 * Base64 encoded X.509 CRL.
203 * The name of the algorithm used for Certificate/CRL signing.
279 * Tries to generates single CRL/Certificate
311 X509CRL crl = (X509CRL) factory.generateCRL(bais); local
312 assertNotNull("Factory returned null on correct data", crl);
316 crl.verify(publicKey);
386 // -1 means that only 1 (-(-1)) CRL will be generated
417 // Tests CRL generation on the base of sequences of heterogeneous
420 // expected size og generated CRL collection
    [all...]
  /libcore/luni/src/test/java/tests/security/cert/
CertificateFactory1Test.java 38 import java.security.cert.CRL;
390 assertTrue("Not empty CRL collection was returned from null stream", colCrl.isEmpty());
405 assertTrue("Not empty CRL collection was returned from empty stream", colCrl.isEmpty());
437 CRL crl; local
459 crl = certFs[i].generateCRL(is);
460 assertNull("Not null CRL was created", crl);
467 assertTrue("Not empty CRL Collection was created", colCrl.isEmpty());
X509CertSelectorTest.java 1927 public MyCRL crl; field in class:X509CertSelectorTest
    [all...]
  /external/chromium_org/third_party/boringssl/src/crypto/x509/
x509_vfy.c 71 /* CRL score values */
77 /* certificate is within CRL scope */
81 /* CRL times valid */
89 /* If this score or above CRL is probably valid */
93 /* CRL issuer is certificate issuer */
97 /* CRL issuer is on certificate path */
101 /* CRL issuer matches CRL AKID */
105 /* Have a delta CRL with valid times */
122 X509_CRL *crl, X509 *x)
809 X509_CRL *crl = NULL, *dcrl = NULL; local
953 X509_CRL *crl, *best_crl = NULL; local
1426 X509_CRL *crl = NULL, *dcrl = NULL; local
1967 X509_CRL *crl = NULL; local
    [all...]
  /external/openssl/crypto/cms/
cms_lcl.h 329 X509_CRL *crl; member in union:CMS_RevocationInfoChoice_st::__anon32797
  /external/openssl/crypto/store/
str_lib.c 73 "X.509 CRL",
858 X509_CRL *crl; local
865 if (!object || !object->data.crl)
871 CRYPTO_add(&object->data.crl->references,1,CRYPTO_LOCK_X509_CRL);
875 crl = object->data.crl;
877 return crl;
884 X509_CRL *crl; local
891 if (!object || !object->data.crl)
897 CRYPTO_add(&object->data.crl->references,1,CRYPTO_LOCK_X509_CRL)
999 X509_CRL *crl; local
    [all...]
store.h 222 X509_CRL *crl; member in union:STORE_OBJECT_st::__anon32963
  /external/openssl/crypto/x509/
x509_vfy.c 73 /* CRL score values */
79 /* certificate is within CRL scope */
83 /* CRL times valid */
91 /* If this score or above CRL is probably valid */
95 /* CRL issuer is certificate issuer */
99 /* CRL issuer is on certificate path */
103 /* CRL issuer matches CRL AKID */
107 /* Have a delta CRL with valid times */
123 X509_CRL *crl, X509 *x)
694 X509_CRL *crl = NULL, *dcrl = NULL; local
837 X509_CRL *crl, *best_crl = NULL; local
1310 X509_CRL *crl = NULL, *dcrl = NULL; local
    [all...]
x509_vfy.h 130 X509_CRL *crl; member in union:x509_object_st::__anon32973
200 int (*get_crl)(X509_STORE_CTX *ctx, X509_CRL **crl, X509 *x); /* retrieve CRL */
201 int (*check_crl)(X509_STORE_CTX *ctx, X509_CRL *crl); /* Check CRL validity */
202 int (*cert_crl)(X509_STORE_CTX *ctx, X509_CRL *crl, X509 *x); /* Check certificate against CRL */
249 int (*get_crl)(X509_STORE_CTX *ctx, X509_CRL **crl, X509 *x); /* retrieve CRL */
250 int (*check_crl)(X509_STORE_CTX *ctx, X509_CRL *crl); /* Check CRL validity *
    [all...]
x509.h 439 /* Set up if indirect CRL */
464 X509_CRL_INFO *crl; member in struct:X509_crl_st
475 /* CRL and base CRL numbers for delta processing */
514 X509_CRL *crl; member in struct:X509_info_st
621 #define X509_CRL_get_version(x) ASN1_INTEGER_get((x)->crl->version)
622 #define X509_CRL_get_lastUpdate(x) ((x)->crl->lastUpdate)
623 #define X509_CRL_get_nextUpdate(x) ((x)->crl->nextUpdate)
624 #define X509_CRL_get_issuer(x) ((x)->crl->issuer)
625 #define X509_CRL_get_REVOKED(x) ((x)->crl->revoked
    [all...]
  /libcore/luni/src/test/java/libcore/java/security/cert/
X509CRLTest.java 32 import java.security.cert.CRL;
57 private static final String CERT_CRL_CA = "x509/cert-crl-ca.der";
59 private static final String CRL_RSA = "x509/crl-rsa.der";
61 private static final String CRL_RSA_DSA = "x509/crl-rsa-dsa.der";
63 private static final String CRL_RSA_DSA_SIGOPT = "x509/crl-rsa-dsa-sigopt.der";
65 private static final String CRL_UNSUPPORTED = "x509/crl-unsupported.der";
67 private static final String CRL_RSA_DATES = "x509/crl-rsa-dates.txt";
69 private static final String CRL_RSA_DSA_DATES = "x509/crl-rsa-dsa-dates.txt";
71 private static final String CRL_RSA_SIG = "x509/crl-rsa-sig.der";
73 private static final String CRL_RSA_TBS = "x509/crl-rsa-tbs.der"
97 X509CRL crl = (X509CRL) f.generateCRL(is); local
229 X509CRL crl = getCRL(f, CRL_RSA); local
243 X509CRL crl = getCRL(f, CRL_RSA_DSA); local
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
CertPathValidatorUtilities.java 349 protected static X500Principal getIssuerPrincipal(X509CRL crl)
351 return crl.getIssuerX500Principal();
372 // crl checking
692 // "CRL/LDAP", params, BouncyCastleProvider.PROVIDER_NAME));
840 * Add the CRL issuers from the cRLIssuer field of the distribution point or
852 * @param selector The CRL selector.
866 // indirect CRL
883 "CRL issuer information from distribution point cannot be decoded.",
892 * certificate issuer is CRL issuer, distributionPoint field MUST be
898 "CRL issuer is omitted from distribution point but no distributionPoint field present.")
1149 X509CRL crl = (X509CRL)it.next(); local
    [all...]
RFC3280CertPathUtilities.java 65 * If the complete CRL includes an issuing distribution point (IDP) CRL
68 * (i) If the distribution point name is present in the IDP CRL extension
71 * distribution point name is present in the IDP CRL extension and the
77 * (ii) If the onlyContainsUserCerts boolean is asserted in the IDP CRL
82 * (iii) If the onlyContainsCACerts boolean is asserted in the IDP CRL
92 * @param crl The CRL.
98 X509CRL crl)
104 idp = IssuingDistributionPoint.getInstance(CertPathValidatorUtilities.getExtensionValue(crl,
598 X509CRL crl = (X509CRL)it.next(); local
1759 X509CRL crl = (X509CRL)crl_iter.next(); local
    [all...]
  /external/chromium_org/third_party/boringssl/src/include/openssl/
x509_vfy.h 125 X509_CRL *crl; member in union:x509_object_st::__anon16301
198 int (*get_crl)(X509_STORE_CTX *ctx, X509_CRL **crl, X509 *x); /* retrieve CRL */
199 int (*check_crl)(X509_STORE_CTX *ctx, X509_CRL *crl); /* Check CRL validity */
200 int (*cert_crl)(X509_STORE_CTX *ctx, X509_CRL *crl, X509 *x); /* Check certificate against CRL */
247 int (*get_crl)(X509_STORE_CTX *ctx, X509_CRL **crl, X509 *x); /* retrieve CRL */
248 int (*check_crl)(X509_STORE_CTX *ctx, X509_CRL *crl); /* Check CRL validity *
    [all...]
x509.h 395 /* Set up if indirect CRL */
420 X509_CRL_INFO *crl; member in struct:X509_crl_st
431 /* CRL and base CRL numbers for delta processing */
468 X509_CRL *crl; member in struct:X509_info_st
575 #define X509_CRL_get_version(x) ASN1_INTEGER_get((x)->crl->version)
576 #define X509_CRL_get_lastUpdate(x) ((x)->crl->lastUpdate)
577 #define X509_CRL_get_nextUpdate(x) ((x)->crl->nextUpdate)
578 #define X509_CRL_get_issuer(x) ((x)->crl->issuer)
579 #define X509_CRL_get_REVOKED(x) ((x)->crl->revoked
    [all...]
x509v3.h 132 X509_CRL *crl; member in struct:v3_ext_ctx
608 OPENSSL_EXPORT int X509V3_EXT_CRL_add_nconf(CONF *conf, X509V3_CTX *ctx, char *section, X509_CRL *crl);
619 char *section, X509_CRL *crl); variable
633 X509_REQ *req, X509_CRL *crl, int flags);
  /external/openssl/apps/
ca.c 118 #define ENV_CRL "crl"
143 #define REV_CRL_REASON 1 /* Value is CRL reason code */
154 " -gencrl - Generate a new CRL\n",
155 " -crldays days - Days is when the next CRL is due\n",
156 " -crlhours hours - Hours is when the next CRL is due\n",
183 " -crlexts .. - CRL extension section (override value in config file)\n",
307 X509_CRL *crl=NULL; local
    [all...]
  /external/openssl/crypto/pkcs7/
pkcs7.h 126 STACK_OF(X509_CRL) *crl; /* [ 1 ] */ member in struct:pkcs7_signed_st
154 STACK_OF(X509_CRL) *crl; /* [ 1 ] */ member in struct:pkcs7_signedandenveloped_st
  /external/openssl/include/openssl/
pkcs7.h 126 STACK_OF(X509_CRL) *crl; /* [ 1 ] */ member in struct:pkcs7_signed_st
154 STACK_OF(X509_CRL) *crl; /* [ 1 ] */ member in struct:pkcs7_signedandenveloped_st
x509_vfy.h 130 X509_CRL *crl; member in union:x509_object_st::__anon33006
200 int (*get_crl)(X509_STORE_CTX *ctx, X509_CRL **crl, X509 *x); /* retrieve CRL */
201 int (*check_crl)(X509_STORE_CTX *ctx, X509_CRL *crl); /* Check CRL validity */
202 int (*cert_crl)(X509_STORE_CTX *ctx, X509_CRL *crl, X509 *x); /* Check certificate against CRL */
249 int (*get_crl)(X509_STORE_CTX *ctx, X509_CRL **crl, X509 *x); /* retrieve CRL */
250 int (*check_crl)(X509_STORE_CTX *ctx, X509_CRL *crl); /* Check CRL validity *
    [all...]
x509.h 439 /* Set up if indirect CRL */
464 X509_CRL_INFO *crl; member in struct:X509_crl_st
475 /* CRL and base CRL numbers for delta processing */
514 X509_CRL *crl; member in struct:X509_info_st
621 #define X509_CRL_get_version(x) ASN1_INTEGER_get((x)->crl->version)
622 #define X509_CRL_get_lastUpdate(x) ((x)->crl->lastUpdate)
623 #define X509_CRL_get_nextUpdate(x) ((x)->crl->nextUpdate)
624 #define X509_CRL_get_issuer(x) ((x)->crl->issuer)
625 #define X509_CRL_get_REVOKED(x) ((x)->crl->revoked
    [all...]
x509v3.h 135 X509_CRL *crl; member in struct:v3_ext_ctx
610 int X509V3_EXT_CRL_add_nconf(CONF *conf, X509V3_CTX *ctx, char *section, X509_CRL *crl);
621 char *section, X509_CRL *crl); variable
636 X509_REQ *req, X509_CRL *crl, int flags);
  /external/openssl/crypto/x509v3/
x509v3.h 135 X509_CRL *crl; member in struct:v3_ext_ctx
610 int X509V3_EXT_CRL_add_nconf(CONF *conf, X509V3_CTX *ctx, char *section, X509_CRL *crl);
621 char *section, X509_CRL *crl); variable
636 X509_REQ *req, X509_CRL *crl, int flags);
  /external/conscrypt/src/main/native/
org_conscrypt_NativeCrypto.cpp 5179 X509_CRL* crl = reinterpret_cast<X509_CRL*>(static_cast<uintptr_t>(x509CrlRef)); local
5261 X509_CRL* crl = reinterpret_cast<X509_CRL*>(static_cast<uintptr_t>(x509CrlRef)); local
5289 X509_CRL* crl = reinterpret_cast<X509_CRL*>(static_cast<uintptr_t>(x509CrlRef)); local
5295 X509_CRL* crl = reinterpret_cast<X509_CRL*>(static_cast<uintptr_t>(x509CrlRef)); local
5309 X509_CRL* crl = reinterpret_cast<X509_CRL*>(static_cast<uintptr_t>(x509CrlRef)); local
5333 X509_CRL* crl = reinterpret_cast<X509_CRL*>(static_cast<uintptr_t>(x509CrlRef)); local
5346 X509_CRL* crl = reinterpret_cast<X509_CRL*>(static_cast<uintptr_t>(x509CrlRef)); local
5364 X509_CRL* crl = reinterpret_cast<X509_CRL*>(static_cast<uintptr_t>(x509CrlRef)); local
5370 X509_CRL* crl = reinterpret_cast<X509_CRL*>(static_cast<uintptr_t>(x509CrlRef)); local
5426 X509_CRL* crl = reinterpret_cast<X509_CRL*>(static_cast<uintptr_t>(x509CrlRef)); local
5502 X509_CRL* crl = reinterpret_cast<X509_CRL*>(static_cast<uintptr_t>(x509CrlRef)); local
5508 X509_CRL* crl = reinterpret_cast<X509_CRL*>(static_cast<uintptr_t>(x509CrlRef)); local
5533 X509_CRL* crl = reinterpret_cast<X509_CRL*>(static_cast<uintptr_t>(x509CrlRef)); local
5548 X509_CRL* crl = reinterpret_cast<X509_CRL*>(static_cast<uintptr_t>(x509CrlRef)); local
    [all...]
  /prebuilts/sdk/tools/lib/
signapk.jar 

Completed in 3332 milliseconds

12 3