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

12 3

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
X509CRLObject.java 50 * Issuer Alternative Name
257 throw new IllegalStateException("can't encode issuer DN");
281 X500Name previousCertificateIssuer = null; // the issuer
305 X500Name previousCertificateIssuer = null; // the issuer
549 X500Name issuer; local
553 issuer = X500Name.getInstance(((X509Certificate)cert).getIssuerX500Principal().getEncoded());
559 issuer = org.bouncycastle.asn1.x509.Certificate.getInstance(cert.getEncoded()).getIssuer();
567 if (!caName.equals(issuer))
CertPathValidatorUtilities.java 124 * issuer of the given X509 certificate. Uses the default provider
144 * issuer of the given X509 certificate. Uses the specified
750 * from the certificate if not given to the issuer criterion of the
788 "CRL issuer information from distribution point cannot be decoded.",
797 * certificate issuer is CRL issuer, distributionPoint field MUST be
803 "CRL issuer is omitted from distribution point but no distributionPoint field present.");
805 // add and check issuer principals
818 // // append fragment to issuer, only one
819 // // issuer can be there, if this is give
1330 X509Certificate issuer = null; local
    [all...]
RFC3280CertPathUtilities.java 148 throw new AnnotatedException("Could not read CRL issuer.", e);
180 throw new AnnotatedException("Could not read certificate issuer.", e);
273 * If the DP includes cRLIssuer, then verify that the issuer field in the
276 * boolean asserted. Otherwise, verify that the CRL issuer matches the
277 * certificate issuer.
308 throw new AnnotatedException("Exception encoding CRL issuer: " + e.getMessage(), e);
329 "CRL issuer information from distribution point cannot be decoded.", e);
339 throw new AnnotatedException("CRL issuer of CRL does not match CRL issuer of distribution point.");
352 throw new AnnotatedException("Cannot find matching CRL issuer for certificate.")
2019 ASN1Primitive issuer = null; local
    [all...]
  /external/conscrypt/src/platform/java/org/conscrypt/
TrustManagerImpl.java 370 // the "issuer" of the current certificate. In a properly
538 // we have a KeyStore and the issuer of the last cert in
541 X509Certificate issuer = trustedCertificateStore.findIssuer(lastCert); local
542 if (issuer != null) {
543 return trustedCertificateIndex.index(issuer);
TrustedCertificateStore.java 368 // match on verified issuer of Certificate
380 X500Principal issuer = c.getIssuerX500Principal(); local
381 X509Certificate user = findCert(addedDir, issuer, selector, X509Certificate.class);
385 X509Certificate system = findCert(systemDir, issuer, selector, X509Certificate.class);
423 * if no issuer certificates could be found.
  /external/wpa_supplicant_8/src/tls/
x509v3.h 53 struct x509_name issuer; member in struct:x509_certificate
113 int x509_certificate_check_signature(struct x509_certificate *issuer,
  /external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
TestCertUtils.java 417 X500Principal issuer) {
418 super(subj, issuer);
431 private X500Principal issuer; field in class:TestCertUtils.TestX509Certificate
433 public TestX509Certificate(X500Principal subj, X500Principal issuer) {
435 this.issuer = issuer;
439 return issuer;
450 * and followed by the encoded form of Issuer (as X500Principal)
454 byte[] aissuer = issuer.getEncoded();
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/
TestCertUtils.java 422 X500Principal issuer) {
423 super(subj, issuer);
438 private X500Principal issuer; field in class:TestCertUtils.TestX509Certificate
440 public TestX509Certificate(X500Principal subj, X500Principal issuer) {
442 this.issuer = issuer;
446 return issuer;
457 * and followed by the encoded form of Issuer (as X500Principal)
462 byte[] aissuer = issuer.getEncoded();
  /external/boringssl/src/crypto/x509/
x509_vfy.c 91 /* Issuer name matches certificate */
99 /* CRL issuer is certificate issuer */
103 /* CRL issuer is on certificate path */
107 /* CRL issuer matches CRL AKID */
116 static int check_issued(X509_STORE_CTX *ctx, X509 *x, X509 *issuer);
249 /* If asked see if we can find issuer in trusted store first */
454 /* Given a STACK_OF(X509) find the issuer of cert (if any)
460 X509 *issuer; local
463 issuer = sk_X509_value(sk, i)
1437 X509 *issuer = NULL; local
1481 X509 *issuer = NULL; local
    [all...]
  /libcore/luni/src/main/java/java/security/cert/
X509CertSelector.java 55 private X500Principal issuer; field in class:X509CertSelector
124 * Sets the issuer that a certificate must match.
126 * @param issuer
127 * the issuer to match, or {@code null} if the issuer is not to
130 public void setIssuer(X500Principal issuer) {
131 this.issuer = issuer;
137 * Returns the issuer that a certificate must match.
139 * @return the issuer that a certificate must match, or {@code null} if th
    [all...]
  /libcore/support/src/test/java/libcore/java/security/
TestKeyStore.java 499 X500Principal issuer = ((caCert != null) local
503 x509c = createCertificate(publicKey, signingKey, subject, issuer, keyUsage, ca,
562 X500Principal issuer,
600 x509cg.setIssuerDN(issuer);
756 return issuer(keyStore, cert);
764 public static Certificate issuer(KeyStore keyStore, Certificate c) method in class:TestKeyStore
767 throw new IllegalStateException("issuer requires an X509Certificate, found " + c);
    [all...]
  /external/apache-harmony/security/src/test/impl/java.injected/java/security/cert/
X509CertSelectorTest.java 93 protected X500Principal issuer = null; field in class:X509CertSelectorTest.TestCert
201 public void setIssuer(X500Principal issuer) {
202 this.issuer = issuer;
271 return issuer;
275 return issuer;
532 * setIssuer(X500Principal issuer) method testing.
545 + "in the case of null issuer criteria.",
569 assertEquals("The returned issuer should be equal to specified",
571 assertFalse("The returned issuer should differ"
2119 Name issuer = new Name("O=Certificate Issuer"); local
2686 X500Principal issuer = new X500Principal("O=Issuer Org."); local
2751 X500Principal issuer = new X500Principal("O=Issuer Org."); local
2846 X500Principal issuer = new X500Principal("O=Issuer Org."); local
    [all...]
  /external/libvncserver/x11vnc/
sslhelper.c 805 X509_NAME *issuer; local
819 issuer = X509_get_issuer_name(xs);
843 rfbLog("CA CRL: Issuer: %s, %s\n", cp2, cp);
884 rc=X509_STORE_get_by_subject(&store_ctx, X509_LU_CRL, issuer, &obj);
896 cp=X509_NAME_oneline(issuer, NULL, 0);
898 "revoked per CRL from issuer %s\n", serial, serial, cp);
    [all...]
  /libcore/luni/src/test/java/tests/security/cert/
X509CertSelectorTest.java 374 assertEquals("The returned issuer should be equal to specified",
376 assertFalse("The returned issuer should differ",
385 // manually obtained DER encoding of "O=First Org." issuer name;
390 // manually obtained DER encoding of "O=Second Org." issuer name;
399 assertTrue("The returned issuer should be equal to specified",
401 assertFalse("The returned issuer should differ", name2.equals(selector.getIssuerAsBytes()));
403 assertTrue("The returned issuer should be equal to specified",
419 assertEquals("The returned issuer should be equal to specified", name1,
421 assertFalse("The returned issuer should differ",
424 assertEquals("The returned issuer should be equal to specified", name2
1561 protected X500Principal issuer = null; field in class:X509CertSelectorTest.TestCert
    [all...]
  /external/boringssl/src/include/openssl/
x509.h 216 X509_NAME *issuer; member in struct:x509_cinf_st
397 STACK_OF(GENERAL_NAME) *issuer; member in struct:x509_revoked_st
410 X509_NAME *issuer; member in struct:X509_crl_info_st
576 #define X509_CRL_get_issuer(x) ((x)->crl->issuer)
580 #define X509_CINF_get_issuer(c) (&(c)->issuer)
589 ASN1_INTEGER *ser, X509_NAME *issuer),
    [all...]
x509v3.h 259 GENERAL_NAMES *issuer; member in struct:AUTHORITY_KEYID_st
623 OPENSSL_EXPORT void X509V3_set_ctx(X509V3_CTX *ctx, X509 *issuer, X509 *subject,
669 OPENSSL_EXPORT int X509_check_issued(X509 *issuer, X509 *subject);
670 OPENSSL_EXPORT int X509_check_akid(X509 *issuer, AUTHORITY_KEYID *akid);
  /prebuilts/sdk/tools/lib/
signapk.jar 
  /external/google-tv-pairing-protocol/java/jar/
bcprov-jdk15-143.jar 
  /prebuilts/devtools/tools/lib/
bcpkix-jdk15on-1.48.jar 
bcprov-jdk15on-1.48.jar 
  /prebuilts/tools/common/m2/repository/org/bouncycastle/bcpkix-jdk15on/1.48/
bcpkix-jdk15on-1.48.jar 
  /prebuilts/tools/common/offline-m2/org/bouncycastle/bcpkix-jdk15on/1.48/
bcpkix-jdk15on-1.48.jar 
  /prebuilts/tools/common/m2/repository/org/bouncycastle/bcprov-jdk15on/1.48/
bcprov-jdk15on-1.48.jar 
  /prebuilts/tools/common/offline-m2/org/bouncycastle/bcprov-jdk15on/1.48/
bcprov-jdk15on-1.48.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.osgi_3.6.1.R36x_v20100806.jar 

Completed in 307 milliseconds

12 3