Home
last modified time | relevance | path

Searched refs:authKeyParcel (Results 1 – 2 of 2) sorted by relevance

/aosp12/frameworks/base/identity/java/android/security/identity/
H A DCredstoreIdentityCredential.java378 for (AuthKeyParcel authKeyParcel : authKeyParcels) { in getAuthKeysNeedingCertification()
380 ByteArrayInputStream bais = new ByteArrayInputStream(authKeyParcel.x509cert); in getAuthKeysNeedingCertification()
404 AuthKeyParcel authKeyParcel = new AuthKeyParcel(); in storeStaticAuthenticationData() local
405 authKeyParcel.x509cert = authenticationKey.getEncoded(); in storeStaticAuthenticationData()
406 mBinder.storeStaticAuthenticationData(authKeyParcel, staticAuthData); in storeStaticAuthenticationData()
427 AuthKeyParcel authKeyParcel = new AuthKeyParcel(); in storeStaticAuthenticationData() local
428 authKeyParcel.x509cert = authenticationKey.getEncoded(); in storeStaticAuthenticationData()
431 mBinder.storeStaticAuthenticationDataWithExpiration(authKeyParcel, in storeStaticAuthenticationData()
/aosp12/system/security/identity/
H A DCredential.cpp642 AuthKeyParcel authKeyParcel; in getAuthKeysNeedingCertification() local
643 authKeyParcel.x509cert = key; in getAuthKeysNeedingCertification()
644 authKeyParcels.push_back(authKeyParcel); in getAuthKeysNeedingCertification()