HomeSort by relevance Sort by last modified time
    Searched full:signers (Results 1 - 25 of 31) sorted by null

1 2

  /libcore/luni/src/main/java/java/util/jar/
JarEntry.java 44 CodeSigner signers[]; field in class:JarEntry
126 signers = je.signers;
130 * Returns the code signers for the digital signatures associated with the
135 * @return the code signers for the JAR entry.
139 if (null == signers) {
140 signers = getCodeSigners(getCertificates());
142 if (null == signers) {
146 CodeSigner[] tmp = new CodeSigner[signers.length];
147 System.arraycopy(signers, 0, tmp, 0, tmp.length)
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/security/fortress/
DefaultPolicyParser.java 157 * <li> If <code>signers</code> is specified, expand it and obtain
179 * @throws Exception if unable to resolve codebase, signers or principals
189 Certificate[] signers = null; local
196 if (ge.signers != null) {
198 ge.signers = PolicyUtils.expand(ge.signers, system);
200 signers = resolveSigners(ks, ge.signers);
229 return new PolicyEntry(new CodeSource(codebase, signers), principals,
237 * and <code>signers</code>
271 Certificate[] signers = (pe.signers == null) ? null : resolveSigners( local
    [all...]
DefaultPolicy.java 64 * keystore is used to look up the certificates of signers specified in the
76 * codebase and any signers (including case of unsigned code), respectively.
  /libcore/luni/src/main/java/java/security/
CodeSource.java 58 private transient CodeSigner[] signers; field in class:CodeSource
93 * @param signers
97 public CodeSource(URL location, CodeSigner[] signers) {
99 if (signers != null) {
100 this.signers = new CodeSigner[signers.length];
101 System.arraycopy(signers, 0, this.signers, 0, signers.length);
157 * this instance, the certificates are obtained from the supplied signers
    [all...]
UnresolvedPermission.java 327 * per {@code getUnresolvedCerts()}) among the passed collection of signers.
339 // check signers at first
  /external/openssl/crypto/pkcs7/
pk7_smime.c 269 STACK_OF(X509) *signers;
314 signers = PKCS7_get0_signers(p7, certs, flags);
316 if(!signers) return 0;
320 if (!(flags & PKCS7_NOVERIFY)) for (k = 0; k < sk_X509_num(signers); k++) {
321 signer = sk_X509_value (signers, k);
327 sk_X509_free(signers);
333 sk_X509_free(signers);
345 sk_X509_free(signers);
407 signer = sk_X509_value (signers, i);
425 sk_X509_free(signers);
    [all...]
pkcs7err.c 146 {ERR_REASON(PKCS7_R_NO_SIGNERS) ,"no signers"},
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/
Signer.java 4 * Generic signer interface for hash based and message recovery signers.
  /libcore/luni/src/main/java/org/apache/harmony/security/
PolicyEntry.java 87 CodeSigner[] signers = codeSource.getCodeSigners(); local
88 if (signers == null) {
92 result = new CodeSource(codeSourceURL, signers);
DefaultPolicyScanner.java 211 ge.signers = st.sval;
329 pe.signers = st.sval;
423 * The signers part of grant clause. This is a comma-separated list of
426 public String signers; field in class:DefaultPolicyScanner.GrantEntry
511 * The signers part of permission clause. This is a comma-separated list
514 public String signers; field in class:DefaultPolicyScanner.PermissionEntry
  /libcore/luni/src/main/java/javax/security/auth/
SubjectDomainCombiner.java 26 * Merges permissions based on code source and code signers with permissions
77 * code source and signers.
  /external/openssl/apps/
smime.c 72 static int save_certs(char *signerfile, STACK_OF(X509) *signers);
377 BIO_puts(bio_err, "Multiple signers or keys not allowed\n");
461 BIO_printf (bio_err, "-noverify don't verify signers certificate\n");
462 BIO_printf (bio_err, "-nocerts don't include signers certificate when signing\n");
755 STACK_OF(X509) *signers;
763 signers = PKCS7_get0_signers(p7, other, flags);
764 if (!save_certs(signerfile, signers))
766 BIO_printf(bio_err, "Error writing signers to %s\n",
771 sk_X509_free(signers);
826 static int save_certs(char *signerfile, STACK_OF(X509) *signers)
    [all...]
cms.c 71 static int save_certs(char *signerfile, STACK_OF(X509) *signers);
527 BIO_puts(bio_err, "Multiple signers or keys not allowed\n");
612 BIO_printf (bio_err, "-noverify don't verify signers certificate\n");
613 BIO_printf (bio_err, "-nocerts don't include signers certificate when signing\n");
1091 STACK_OF(X509) *signers;
1092 signers = CMS_get0_signers(cms);
1093 if (!save_certs(signerfile, signers))
1096 "Error writing signers to %s\n",
1101 sk_X509_free(signers);
1193 static int save_certs(char *signerfile, STACK_OF(X509) *signers)
    [all...]
  /external/bouncycastle/
bouncycastle.config 284 org/bouncycastle/crypto/signers/DSADigestSigner.java \
285 org/bouncycastle/crypto/signers/ECDSASigner.java \
286 org/bouncycastle/crypto/signers/ECGOST3410Signer.java \
287 org/bouncycastle/crypto/signers/ECNRSigner.java \
288 org/bouncycastle/crypto/signers/GOST3410Signer.java \
289 org/bouncycastle/crypto/signers/GenericSigner.java \
290 org/bouncycastle/crypto/signers/ISO9796d2PSSSigner.java \
291 org/bouncycastle/crypto/signers/ISO9796d2Signer.java \
292 org/bouncycastle/crypto/signers/PSSSigner.java \
293 org/bouncycastle/crypto/signers/package.html
    [all...]
  /external/openssl/crypto/pem/
pkcs7.lis 18 21 2068:d=0 hl=2 l= 0 cons: univ: SET # signers
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
CodeSourceTest.java 272 * the signers.
286 CodeSigner[] signers = { new CodeSigner(cpath, null) }; local
287 CodeSource cs = new CodeSource(null, signers);
388 CodeSigner[] signers = { new CodeSigner(TestCertUtils.getCertPath(), local
390 CodeSource cs = new CodeSource(null, signers);
393 assertTrue(signers.length == got.length);
395 for (int i = 0; i < signers.length; i++) {
396 CodeSigner s = signers[i];
  /libcore/luni/src/main/java/java/lang/
ClassLoader.java 760 * Gets the signers of the specified class. This implementation returns
764 * the {@code Class} object for which to get the signers.
765 * @return signers the signers of {@code c}.
772 * Sets the signers of the specified class. This implementation does
776 * the {@code Class} object for which to set the signers.
777 * @param signers
778 * the signers for {@code c}.
780 protected final void setSigners(Class<?> c, Object[] signers) {
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/signers/
DSASigner.java 1 package org.bouncycastle.crypto.signers;
RSADigestSigner.java 1 package org.bouncycastle.crypto.signers;
  /external/chromium/net/third_party/nss/ssl/
cmpcert.c 53 * Look to see if any of the signers in the cert chain for "cert" are found
  /external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/
JDKDSASigner.java 32 import org.bouncycastle.crypto.signers.DSASigner;
  /libcore/luni/src/test/java/org/apache/harmony/archive/tests/java/util/jar/
JarEntryTest.java 189 // the code signers are non-null too early
  /external/openssl/crypto/ocsp/
ocsp_cl.c 138 * name of an optional signers certificate and include one
ocsp_vfy.c 355 * response verify. Just find the signers certificate and verify it
  /libcore/luni/src/main/java/org/apache/harmony/security/provider/cert/
X509CertPathImpl.java 371 ASN1Any.getInstance(),// signers info

Completed in 538 milliseconds

1 2