Home
last modified time | relevance | path

Searched refs:allowUsingExhaustedKeys (Results 1 – 7 of 7) sorted by relevance

/aosp12/system/security/identity/binder/android/security/identity/
H A DICredential.aidl51 long selectAuthKey(in boolean allowUsingExhaustedKeys, in selectAuthKey() argument
58 in boolean allowUsingExhaustedKeys, in getEntries() argument
/aosp12/system/security/identity/
H A DCredentialData.h114 const AuthKeyData* selectAuthKey(bool allowUsingExhaustedKeys, bool allowUsingExpiredKeys);
124 AuthKeyData* findAuthKey_(bool allowUsingExhaustedKeys, bool allowUsingExpiredKeys);
H A DCredential.h69 Status selectAuthKey(bool allowUsingExhaustedKeys, bool allowUsingExpiredKeys,
75 const vector<uint8_t>& readerSignature, bool allowUsingExhaustedKeys,
H A DCredentialData.cpp506 AuthKeyData* CredentialData::findAuthKey_(bool allowUsingExhaustedKeys, in findAuthKey_() argument
533 if (candidate->useCount >= maxUsesPerKey_ && !allowUsingExhaustedKeys) { in findAuthKey_()
540 const AuthKeyData* CredentialData::selectAuthKey(bool allowUsingExhaustedKeys, in selectAuthKey() argument
545 candidate = findAuthKey_(allowUsingExhaustedKeys, false); in selectAuthKey()
553 candidate = findAuthKey_(allowUsingExhaustedKeys, true); in selectAuthKey()
H A DCredential.cpp118 Status Credential::selectAuthKey(bool allowUsingExhaustedKeys, bool allowUsingExpiredKeys, in selectAuthKey() argument
130 data->selectAuthKey(allowUsingExhaustedKeys, allowUsingExpiredKeys); in selectAuthKey()
220 const vector<uint8_t>& readerSignature, bool allowUsingExhaustedKeys, in getEntries() argument
362 data->selectAuthKey(allowUsingExhaustedKeys, allowUsingExpiredKeys); in getEntries()
/aosp12/frameworks/base/identity/java/android/security/identity/
H A DIdentityCredential.java115 public abstract void setAllowUsingExhaustedKeys(boolean allowUsingExhaustedKeys); in setAllowUsingExhaustedKeys() argument
H A DCredstoreIdentityCredential.java244 public void setAllowUsingExhaustedKeys(boolean allowUsingExhaustedKeys) { in setAllowUsingExhaustedKeys() argument
245 mAllowUsingExhaustedKeys = allowUsingExhaustedKeys; in setAllowUsingExhaustedKeys()