/development/samples/browseable/FingerprintDialog/src/com.example.android.fingerprintdialog/ |
MainActivity.java | 156 * @param keyName the key name to init the cipher 161 private boolean initCipher(Cipher cipher, String keyName) { 164 SecretKey key = (SecretKey) mKeyStore.getKey(keyName, null); 223 * @param keyName the name of the key to be created 233 public void createKey(String keyName, boolean invalidatedByBiometricEnrollment) { 242 KeyGenParameterSpec.Builder builder = new KeyGenParameterSpec.Builder(keyName, 290 PurchaseButtonClickListener(Cipher cipher, String keyName) { 292 mKeyName = keyName;
|
/external/tpm2/ |
PolicyAuthorize.c | 15 // TPM_RC_HASH hash algorithm in keyName is not supported 16 // TPM_RC_SIZE keyName is not the correct size for its hash algorithm
|
Ticket_fp.h | 34 TPM2B_NAME *keyName, // IN: name of key that signed the value
|
Ticket.c | 55 TPM2B_NAME *keyName, // IN: name of key that signed the value 74 CryptUpdateDigest2B(&hmacState, &keyName->b); 114 // Adding keyName
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/ |
AssemblyInfo.cs | 76 // (*) KeyName refers to a key that has been installed in the Crypto Service 79 // (*) If the KeyFile and the KeyName values are both specified, the 81 // (1) If the KeyName can be found in the CSP, that key is used. 82 // (2) If the KeyName does not exist and the KeyFile does exist, the key
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Utility/ |
AssemblyInfo.cs | 73 // (*) KeyName refers to a key that has been installed in the Crypto Service 76 // (*) If the KeyFile and the KeyName values are both specified, the 78 // (1) If the KeyName can be found in the CSP, that key is used. 79 // (2) If the KeyName does not exist and the KeyFile does exist, the key
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/ec2/ |
test_instance.py | 28 <keyName>mykeypair</keyName> 144 <keyName>awskeypair</keyName>
|
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/ |
MockKeyStore.java | 118 private boolean importKey(String keyName, byte[] key, int uid, int flags) { 119 return put(keyName, key, uid, flags); 158 for (String keyName : mStore.get(uid).keySet()) { 159 sb.append(String.format("%d:%s, ", uid, keyName));
|
/prebuilts/tools/common/lombok-ast/ |
deploy.txt | 3 mvn gpg:sign-and-deploy-file -DpomFile=lombok-ast-0.2.1.pom -Dfile=lombok-ast-0.2.1.jar -DrepositoryId=sonatype-nexus-staging -Durl=https://oss.sonatype.org/service/local/staging/deploy/maven2/ -Dsources=lombok-ast-0.2.1-sources.jar -Djavadoc=lombok-ast-0.2.1-javadoc.jar -Dgpg.keyname=???? -Dgpg.passphrase=????
|
/external/autotest/client/tests/kvm/tests/ |
qmp_basic.py | 70 def check_str_key(qmp_dict, keyname, value=None): 71 check_dict_key(qmp_dict, keyname, unicode) 72 if value and value != qmp_dict[keyname]: 74 (keyname, str(qmp_dict[keyname]), str(value))) 86 def check_bool_key(qmp_dict, keyname, value=None): 87 check_dict_key(qmp_dict, keyname, bool) 88 if value and value != qmp_dict[keyname]: 90 (keyname, str(qmp_dict[keyname]), str(value)) [all...] |
qmp_basic_rhel6.py | 71 def check_str_key(qmp_dict, keyname, value=None): 72 check_dict_key(qmp_dict, keyname, unicode) 73 if value and value != qmp_dict[keyname]: 75 (keyname, str(qmp_dict[keyname]), str(value))) 87 def check_bool_key(qmp_dict, keyname, value=None): 88 check_dict_key(qmp_dict, keyname, bool) 89 if value and value != qmp_dict[keyname]: 91 (keyname, str(qmp_dict[keyname]), str(value)) [all...] |
/external/chromium-trace/catapult/telemetry/third_party/web-page-replay/third_party/dns/ |
update.py | 27 keyname=None, keyalgorithm=dns.tsig.default_algorithm): 37 @param keyname: The name of the TSIG key to use; defaults to None. 39 but a keyname is not, then the key used will be the first key in the 41 so applications should supply a keyname when a keyring is used, unless 43 @type keyname: dns.name.Name or string 59 self.use_tsig(keyring, keyname, keyalgorithm)
|
message.py | 93 @ivar keyname: The TSIG keyname to use. The default is None. 94 @type keyname: dns.name.Name object 154 self.keyname = None 414 if not self.keyname is None: 415 r.add_tsig(self.keyname, self.keyring[self.keyname], 422 def use_tsig(self, keyring, keyname=None, fudge=300, 426 and keyname should be added. 430 @param keyname: The name of the TSIG key to use; defaults to None [all...] |
resolver.py | 266 @ivar keyname: The TSIG keyname to use. The default is None. 267 @type keyname: dns.name.Name object 312 self.keyname = None 595 if not self.keyname is None: 596 request.use_tsig(self.keyring, self.keyname, self.keyalgorithm) 677 def use_tsig(self, keyring, keyname=None, 683 @param keyname: The name of the TSIG key to use; defaults to None. 685 but a keyname is not, then the key used will be the first key in the 687 so applications should supply a keyname when a keyring is used, unles [all...] |
renderer.py | 50 r.add_tsig(keyname, secret, 300, 1, 0, '', request_mac) 252 def add_tsig(self, keyname, secret, fudge, id, tsig_error, other_data, 256 @param keyname: the TSIG key name 257 @type keyname: dns.name.Name object 278 keyname, 287 keyname.to_wire(self.output, self.compress, self.origin)
|
/external/libdrm/radeon/ |
bof.h | 60 extern bof_t *bof_object_get(bof_t *object, const char *keyname); 61 extern int bof_object_set(bof_t *object, const char *keyname, bof_t *value);
|
bof.c | 64 bof_t *bof_object_get(bof_t *object, const char *keyname) 69 if (!strcmp(object->array[i]->value, keyname)) { 76 int bof_object_set(bof_t *object, const char *keyname, bof_t *value) 86 key = bof_string(keyname);
|
/external/autotest/site_utils/bootperf-bin/ |
resultsdir.py | 27 <keyname>{perf}=<value>
|
/external/f2fs-tools/tools/ |
f2fstat.c | 82 char keyname[32]; local 84 struct mm_table key = { keyname, NULL }; 140 if (strlen(head) >= sizeof(keyname)) { 148 strcpy(keyname, head);
|
/external/guava/ |
mvn-deploy.sh | 35 params+=" -Dgpg.keyname=${1}"
|
/cts/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/util/ |
OptionHelper.java | 123 String keyName = keyNameTokens[0].replaceFirst("^\"?--?", ""); 126 if (optionShortNames.contains(keyName) || optionNames.contains(keyName)) {
|
/external/apache-xml/src/main/java/org/apache/xalan/templates/ |
FuncKey.java | 73 QName keyname = new QName(xkeyname, xctxt.getNamespaceContext()); local 119 kmgr.getNodeSetDTMByKey(xctxt, docContext, keyname, ref, 143 nodes = kmgr.getNodeSetDTMByKey(xctxt, docContext, keyname,
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/cloudformation/ |
test_connection.py | 16 "KeyName" : { 25 "KeyName" : { "Ref" : "KeyName" }, 59 parameters=[('KeyName', 'myKeyName')], 75 'Parameters.member.1.ParameterKey': 'KeyName', 111 parameters=[('KeyName', 'myKeyName')]) 119 parameters=[('KeyName', 'myKeyName')]) 137 parameters=[('KeyName', 'myKeyName'), ('KeyName2', "", True), 152 'Parameters.member.1.ParameterKey': 'KeyName', 190 parameters=[('KeyName', 'myKeyName')] [all...] |
/cts/tools/cts-device-info/src/com/android/cts/deviceinfo/ |
CameraDeviceInfo.java | 228 String keyName = getKeyName(keyObj); 229 String protoName = keyName.replace('.', '_'); 289 " for keyName: " + keyName); 296 String keyName = getKeyName(keyObj); 297 String protoName = keyName.replace('.', '_'); 371 " for keyName: " + keyName); 391 String keyName = getKeyName(keyObj); 392 if (charsKeyNames.contains(keyName)) { [all...] |
/external/wpa_supplicant_8/src/eap_common/ |
eap_common.c | 247 if (tlvs->keyname) { 249 "EAP: More than one keyName-NAI"); 252 tlvs->keyname = pos;
|