Adds support for the CertBlacklister.

The CertBlacklister is a mechanism for allowing is to use gservices
to blacklist certs by serial number or public key.

Change-Id: Ie4b0c966a8a43c9823fb550c0b1691204f133ae7
This commit is contained in:
Geremy Condra
2012-05-06 18:32:19 -07:00
parent 9d7bbcb89a
commit 3d33c268cc
3 changed files with 318 additions and 0 deletions

View File

@@ -623,6 +623,13 @@ class ServerThread extends Thread {
} catch (Throwable e) {
reportWtf("starting CommonTimeManagementService service", e);
}
try {
Slog.i(TAG, "CertBlacklister");
CertBlacklister blacklister = new CertBlacklister(context);
} catch (Throwable e) {
reportWtf("starting CertBlacklister", e);
}
if (context.getResources().getBoolean(
com.android.internal.R.bool.config_enableDreams)) {