/device/google/marlin/sepolicy/verizon/ |
mac_permissions.xml | 3 <signer signature="@VERIZON" > 5 </signer>
|
/packages/apps/Nfc/etc/ |
sample_nfcee_access.xml | 7 <signer android:signature="SIGNATURE"> 10 </signer> 17 Zero or more signer tags are allowed. 18 Each signer tag must have one android:signature. 19 Zero or more package tags are allowed per signer. 21 If a signer has zero package tags, then ANY application with the 23 If a signer has one or more package tags, then an application signed 27 Duplicate signer tags are not allowed. 28 Duplicate package tags for a single signer are not allowed. 31 In this example, any application from the first signer is grante [all...] |
/system/sepolicy/ |
mac_permissions.xml | 7 keys.conf and is required for each signer tag. The signature can 9 * A signer tag must contain a seinfo tag XOR multiple package stanzas. 10 * Each signer/package tag is allowed to contain one seinfo tag. This tag 21 <signer signature="@PLATFORM" > 23 </signer> 26 <signer> 30 </signer> 33 <signer signature="@PLATFORM" > 37 </signer> 40 <signer> [all...] |
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/ |
SignerId.java | 10 * a basic index for a signer. 23 * Construct a signer ID with the value of a public key's subjectKeyId. 33 * Construct a signer ID based on the issuer and serial number of the signer's associated 36 * @param issuer the issuer of the signer's associated certificate. 37 * @param serialNumber the serial number of the signer's associated certificate. 45 * Construct a signer ID based on the issuer and serial number of the signer's associated 48 * @param issuer the issuer of the signer's associated certificate. 49 * @param serialNumber the serial number of the signer's associated certificate [all...] |
SignerInfoGenerator.java | 33 private final ContentSigner signer; field in class:SignerInfoGenerator 43 ContentSigner signer, 48 this(signerIdentifier, signer, digesterProvider, sigEncAlgFinder, false); 53 ContentSigner signer, 60 this.signer = signer; 64 this.digester = digesterProvider.get(digAlgFinder.find(signer.getAlgorithmIdentifier())); 91 this.signer = original.signer; 100 ContentSigner signer, [all...] |
SignerInformationStore.java | 21 * @param signerInfo the signer information to contain. 37 * @param signerInfos a collection signer information objects to contain. 46 SignerInformation signer = (SignerInformation)it.next(); local 47 SignerId sid = signer.getSID(); 56 list.add(signer); 66 * @param selector to identify a signer 100 * @param selector a signer id to select against.
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/ |
SignerWithRecovery.java | 4 * Signer with message recovery. 7 extends Signer 10 * Returns true if the signer has recovered the full message as 26 * be the first update method called, and calling it will result in the signer assuming
|
Signer.java | 4 * Generic signer interface for hash based and message recovery signers. 6 public interface Signer 9 * Initialise the signer for signing or verification.
|
/device/google/dragon/sepolicy/ |
mac_permissions.xml | 7 keys.conf and is required for each signer tag. 8 * A signer tag may contain a seinfo tag and multiple package stanzas. 11 * Each signer/default/package tag is allowed to contain one seinfo tag. This tag 17 - If a signer stanza has inner package stanzas, those stanza will be checked 24 <signer signature="@GOOGLE" > 26 </signer>
|
/device/google/marlin/sepolicy/ |
mac_permissions.xml | 7 keys.conf and is required for each signer tag. 8 * A signer tag may contain a seinfo tag and multiple package stanzas. 11 * Each signer/default/package tag is allowed to contain one seinfo tag. This tag 17 - If a signer stanza has inner package stanzas, those stanza will be checked 24 <signer signature="@GOOGLE" > 26 </signer>
|
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/ |
SignerTest.java | 33 * tests for class Signer 48 * @tests java.security.Signer#toString() 51 Signer s1 = new SignerStub("testToString1"); 52 assertEquals("[Signer]testToString1", s1.toString()); 54 Signer s2 = new SignerStub("testToString2", IdentityScope.getSystemScope()); 66 * verify Signer() creates instance 69 Signer s = new SignerStub(); 76 * verify Signer(String) creates instance 79 Signer s = new SignerStub("sss3"); 86 * verify Signer(String, IdentityScope) creates instanc [all...] |
/external/chromium-trace/catapult/telemetry/third_party/webpagereplay/third_party/dns/rdtypes/ |
sigbase.py | 61 @ivar signer: the signer 62 @type signer: dns.name.Name object 67 'expiration', 'inception', 'key_tag', 'signer', 71 original_ttl, expiration, inception, key_tag, signer, 81 self.signer = signer 96 self.signer, 108 signer = tok.get_name() 109 signer = signer.choose_relativity(origin, relativize [all...] |
/libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/ |
SignerTest.java | 32 import java.security.Signer; 43 * tests for class Signer 57 * java.security.Signer#toString() 60 Signer s1 = new SignerStub("testToString1"); 61 assertEquals("[Signer]testToString1", s1.toString()); 63 Signer s2 = new SignerStub("testToString2", new SystemScope()); 76 * verify Signer() creates instance 79 Signer s = new SignerStub(); 86 * verify Signer(String) creates instance 89 Signer s = new SignerStub("sss3") [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/util/ |
DSABase.java | 18 protected DSA signer; field in class:DSABase 23 DSA signer, 27 this.signer = signer; 56 BigInteger[] sig = signer.generateSignature(hash); 85 return signer.verifySignature(hash, sig[0], sig[1]);
|
/libcore/benchmarks/src/benchmarks/regression/ |
SignatureBenchmark.java | 83 Signature signer = Signature.getInstance(signatureAlgorithm); local 84 signer.initSign(keyPair.getPrivate()); 85 signer.update(DATA); 86 this.signature = signer.sign(); 93 Signature signer; local 96 signer = Signature.getInstance(signatureAlgorithm, "AndroidOpenSSL"); 99 signer = Signature.getInstance(signatureAlgorithm, "BC"); 104 signer.initSign(privateKey); 105 signer.update(DATA); 106 signer.sign() [all...] |
/libcore/ojluni/src/main/java/java/security/ |
Signer.java | 34 * <p>The management of a signer's private keys is an important and 48 public abstract class Signer extends Identity { 53 * The signer's private key. 60 * Creates a signer. This constructor should only be used for 63 protected Signer() { 69 * Creates a signer with the specified identity name. 73 public Signer(String name) { 78 * Creates a signer with the specified identity name and scope. 87 public Signer(String name, IdentityScope scope) 93 * Returns this signer's private key [all...] |
CodeSigner.java | 32 * This class encapsulates information about a code signer. 44 * The signer's certificate path. 58 * Hash code for this code signer. 65 * @param signerCertPath The signer's certificate path. 82 * Returns the signer's certificate path. 100 * Returns the hash code value for this code signer. 101 * The hash code is generated using the signer's certificate path and the 104 * @return a hash code value for this code signer. 119 * code signer. Two code signers are considered equal if their 120 * signer certificate paths are equal and if their timestamps are equal [all...] |
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cert/selector/ |
X509CertificateHolderSelector.java | 35 * Construct a signer ID based on the issuer and serial number of the signer's associated 38 * @param issuer the issuer of the signer's associated certificate. 39 * @param serialNumber the serial number of the signer's associated certificate. 47 * Construct a signer ID based on the issuer and serial number of the signer's associated 50 * @param issuer the issuer of the signer's associated certificate. 51 * @param serialNumber the serial number of the signer's associated certificate.
|
/frameworks/base/media/lib/signer/ |
com.android.mediadrm.signer.xml | 18 <library name="com.android.mediadrm.signer" 19 file="/system/framework/com.android.mediadrm.signer.jar" />
|
Android.mk | 18 # the mediadrm signer library 22 LOCAL_MODULE:= com.android.mediadrm.signer 32 # ==== com.android.mediadrm.signer.xml lib def ======================== 35 LOCAL_MODULE := com.android.mediadrm.signer.xml
|
/external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/ |
SignerStub.java | 26 import java.security.Signer; 29 * Stub for abstract class Signer, necessary for testing purposes 32 public class SignerStub extends Signer {
|
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cert/ |
CertUtils.java | 38 static X509CertificateHolder generateFullCert(ContentSigner signer, TBSCertificate tbsCert) 42 return new X509CertificateHolder(generateStructure(tbsCert, signer.getAlgorithmIdentifier(), generateSig(signer, tbsCert))); 50 static X509AttributeCertificateHolder generateFullAttrCert(ContentSigner signer, AttributeCertificateInfo attrInfo) 54 return new X509AttributeCertificateHolder(generateAttrStructure(attrInfo, signer.getAlgorithmIdentifier(), generateSig(signer, attrInfo))); 62 static X509CRLHolder generateFullCRL(ContentSigner signer, TBSCertList tbsCertList) 66 return new X509CRLHolder(generateCRLStructure(tbsCertList, signer.getAlgorithmIdentifier(), generateSig(signer, tbsCertList))); 74 private static byte[] generateSig(ContentSigner signer, ASN1Encodable tbsObj [all...] |
/libcore/support/src/test/java/org/apache/harmony/security/tests/support/ |
SignerStub.java | 27 import java.security.Signer; 30 * Stub for abstract class Signer, necessary for testing purposes 34 public class SignerStub extends Signer {
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/oauth2client/tests/ |
test_jwt.py | 55 self.signer = crypt.OpenSSLSigner 70 signer = self.signer.from_string(private_key) 71 signature = signer.sign('foo') 92 signer = self.signer.from_string(private_key) 96 return crypt.make_signed_jwt(signer, { 150 signer = self.signer.from_string(private_key) 153 jwt = crypt.make_signed_jwt(signer, { [all...] |
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/cloudfront/ |
signers.py | 22 class Signer(object): 41 if name == 'Signer': 42 s = Signer()
|