Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/locksettings/recoverablekeystore/storage/
DRecoverableKeyStoreDb.java479 public Long getRecoveryServiceCertSerial(int userId, int uid, @NonNull String rootAlias) { in getRecoveryServiceCertSerial() argument
480 return getLong(userId, uid, rootAlias, RootOfTrustEntry.COLUMN_NAME_CERT_SERIAL); in getRecoveryServiceCertSerial()
494 public long setRecoveryServiceCertSerial(int userId, int uid, @NonNull String rootAlias, in setRecoveryServiceCertSerial() argument
496 return setLong(userId, uid, rootAlias, RootOfTrustEntry.COLUMN_NAME_CERT_SERIAL, in setRecoveryServiceCertSerial()
511 public CertPath getRecoveryServiceCertPath(int userId, int uid, @NonNull String rootAlias) { in getRecoveryServiceCertPath() argument
512 byte[] bytes = getBytes(userId, uid, rootAlias, RootOfTrustEntry.COLUMN_NAME_CERT_PATH); in getRecoveryServiceCertPath()
538 public long setRecoveryServiceCertPath(int userId, int uid, @NonNull String rootAlias, in setRecoveryServiceCertPath() argument
543 return setBytes(userId, uid, rootAlias, RootOfTrustEntry.COLUMN_NAME_CERT_PATH, in setRecoveryServiceCertPath()
711 public long setActiveRootOfTrust(int userId, int uid, @Nullable String rootAlias) { in setActiveRootOfTrust() argument
714 values.put(RecoveryServiceMetadataEntry.COLUMN_NAME_ACTIVE_ROOT_OF_TRUST, rootAlias); in setActiveRootOfTrust()
[all …]
/frameworks/base/keystore/java/android/security/
DIKeyChainService.aidl56 List<String> getCaCertificateChainAliases(String rootAlias, boolean includeDeletedSystem); in getCaCertificateChainAliases() argument