/device/google/marlin/sepolicy/verizon/ |
mac_permissions.xml | 3 <signer signature="@VERIZON" > 5 </signer>
|
/device/google/wahoo/sepolicy/verizon/ |
mac_permissions.xml | 3 <signer signature="@VERIZON" > 5 </signer>
|
/device/google/vrservices/vrcore/sepolicy/ |
mac_permissions.xml | 3 <signer signature="@VRCORE" > 7 </signer> 8 <signer signature="@VRCORE_DEV" > 12 </signer>
|
/device/google/wahoo/sepolicy/vendor/ |
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> 27 <signer signature="@TANGO" > 29 </signer> 30 <signer signature="@TANGO_DEV" > 32 </signer> [all...] |
/system/sepolicy/prebuilts/api/26.0/private/ |
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...] |
/system/sepolicy/private/ |
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...] |
/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...] |
/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>
|
/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" />
|
/system/sepolicy/prebuilts/api/26.0/public/ |
untrusted_app.te | 4 ### Apps are labeled based on mac_permissions.xml (maps signer and 13 ### a system app into a specific domain, add a signer entry for it to
|
untrusted_app_25.te | 4 ### Apps are labeled based on mac_permissions.xml (maps signer and 13 ### a system app into a specific domain, add a signer entry for it to
|
/system/sepolicy/public/ |
untrusted_app.te | 4 ### Apps are labeled based on mac_permissions.xml (maps signer and 13 ### a system app into a specific domain, add a signer entry for it to
|
untrusted_app_25.te | 4 ### Apps are labeled based on mac_permissions.xml (maps signer and 13 ### a system app into a specific domain, add a signer entry for it to
|