/libcore/ojluni/src/main/java/sun/security/pkcs/ |
SignerInfo.java | 93 * Parses a PKCS#7 signer info. 102 * Parses a PKCS#7 signer info. 107 * @param derin the ASN.1 encoding of the signer info. 108 * @param oldStyle flag indicating whether or not the given signer info 492 out += "Signer Info for (issuer): " + issuerName + "\n";
|
PKCS7.java | 184 * @param signerInfos an array of signer information. 556 * @param info the signer information. 570 * @param info the signer information. 670 * Returns the signer's information specified in this PKCS7 block. 671 * @return the array of Signer Infos or null if none are specified 760 out += "PKCS7 :: signer infos: \n"; [all...] |
/external/v8/tools/testrunner/server/ |
main.py | 220 signer = data[3] 221 if not self.IsTrusted(signer): 226 signer_pubkeyfile = self._PubkeyFilename(signer)
|
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/ |
SignerInfoGeneratorBuilder.java | 44 * If the passed in flag is true, the signer signature will be based on the data, not
|
CMSSignedGenerator.java | 228 * Add a generator for a particular signer to this CMS SignedData generator. 230 * @param infoGen the generator representing the particular signer.
|
SignerInformation.java | 254 * signer. If no counter signatures are present an empty store is returned. 579 * @return true if the signer information is verified, false otherwise. 676 * Return a signer information object with the passed in unsigned 703 * Return a signer information object with passed in SignerInformationStore representing counter 707 * @param counterSigners signer info objects carrying counter signature.
|
/external/chromium-trace/catapult/telemetry/third_party/webpagereplay/third_party/dns/rdtypes/ |
dsbase.py | 32 @see: draft-ietf-dnsext-delegation-signer-14.txt"""
|
/external/jmdns/src/javax/jmdns/impl/constants/ |
DNSRecordType.java | 187 * Delegation Signer [RFC3658]
|
/frameworks/base/media/lib/signer/java/com/android/mediadrm/signer/ |
MediaDrmSigner.java | 17 package com.android.mediadrm.signer;
|
/libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/ |
CodeSignerTest.java | 126 assertTrue(new CodeSigner(cpath, null).toString().contains("Signer"));
|
/build/tools/signapk/src/com/android/signapk/ |
SignApk.java | 497 ContentSigner signer = local 505 .build(signer, publicKey)); 664 // write to both output streams. out is the CMSTypedData signer and tee is the file. 677 // write to both output streams. out is the CMSTypedData signer and tee is the file. 693 private WholeFileSignerOutputStream signer; field in class:SignApk.CMSSigner 725 signer = new WholeFileSignerOutputStream(out, outputStream); 726 JarOutputStream outputJar = new JarOutputStream(signer); 742 signer.notifyClosing(); 744 signer.finish(); 760 return signer; [all...] |
/system/sepolicy/ |
untrusted_app.te | 5 ### Apps are labeled based on mac_permissions.xml (maps signer and 14 ### a system app into a specific domain, add a signer entry for it to
|
/external/conscrypt/src/test/java/org/conscrypt/ |
TrustedCertificateStoreTest.java | 300 .signer(certLoopCaKey1) 315 .signer(certLoopCaKey2) 327 .signer(certLoopCaKey1) 370 .signer(multipleIssuersCa2Key) 384 .signer(multipleIssuersCa1Key) [all...] |
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/cloudfront/ |
distribution.py | 127 for signer in self.trusted_signers: 128 if signer == 'Self': 131 s += ' <AwsAccountNumber>%s</AwsAccountNumber>\n' % signer 206 for signer in self.trusted_signers: 207 if signer == 'Self': 210 s += ' <AwsAccountNumber>%s</AwsAccountNumber>\n' % signer
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/cms/ |
SignerInfo.java | 20 * Signature container per Signer, see {@link SignerIdentifier}.
|
/external/c-ares/ |
nameser.h | 78 ns_t_ds = 43, /* Delegation Signer (RFC4034) */
|
/libcore/ojluni/src/main/java/java/security/ |
Key.java | 98 * @see Signer
|
/libcore/ojluni/src/main/java/java/util/jar/ |
JarVerifier.java | 563 * Match CodeSource to a CodeSigner[] in the signer cache. 621 * singleton signerCache or signerCacheCert entries for each unique signer. 633 * Only compare against other per-signer singletons constructed 671 * Snapshot signer state so it doesn't change on us. We care
|
/prebuilts/go/darwin-x86/src/crypto/x509/ |
x509.go | [all...] |
/prebuilts/go/linux-x86/src/crypto/x509/ |
x509.go | [all...] |
/frameworks/base/core/java/android/util/apk/ |
ApkSignatureSchemeV2Verifier.java | 98 * associated with each signer. 113 * associated with each signer. 223 ByteBuffer signer = getLengthPrefixedSlice(signers); local 224 X509Certificate[] certs = verifySigner(signer, contentDigests, certFactory); 228 "Failed to parse/verify signer #" + signerCount + " block", 355 + " contents digest does not match the digest specified by a preceding signer"); [all...] |
/external/bouncycastle/patches/ |
bcpkix.patch | 71 - SignerInformation signer = (SignerInformation)it.next(); 75 - SignerInformationVerifier verifier = verifierProvider.get(signer.getSID()); 77 - if (!signer.verify(verifier)) 84 - Collection counterSigners = signer.getCounterSignatures().getSigners(); 156 + // SignerInformation signer = (SignerInformation)it.next(); 160 + // SignerInformationVerifier verifier = verifierProvider.get(signer.getSID()); 162 + // if (!signer.verify(verifier)) 169 + // Collection counterSigners = signer.getCounterSignatures().getSigners(); [all...] |
/prebuilts/go/darwin-x86/src/crypto/tls/ |
key_agreement.go | 236 priv, ok := cert.PrivateKey.(crypto.Signer) 238 return nil, errors.New("tls: certificate private key does not implement crypto.Signer")
|
/prebuilts/go/linux-x86/src/crypto/tls/ |
key_agreement.go | 236 priv, ok := cert.PrivateKey.(crypto.Signer) 238 return nil, errors.New("tls: certificate private key does not implement crypto.Signer")
|
/build/tools/releasetools/ |
sign_target_files_apks | 157 # By default, APK signer chooses SHA-256 signatures if the APK's minSdkVersion 160 # For N+ builds, we let APK signer rely on the APK's minSdkVersion to 164 # Let APK signer choose whether to use SHA-1 or SHA-256, based on the APK's 168 # Force APK signer to use SHA-1
|