Class TrustedCertificateStore
public final class TrustedCertificateStore extends Object
TrustedCertificateKeyStoreSpi wrapper to allow a traditional
KeyStore interface for use with javax.net.ssl.TrustManagerFactory.init.
The CAs are accessed via KeyStore style aliases. Aliases
are made up of a prefix identifying the source ("system:" vs
"user:") and a suffix based on the OpenSSL X509_NAME_hash_old
function of the CA's subject name. For example, the system CA for
"C=US, O=VeriSign, Inc., OU=Class 3 Public Primary Certification
Authority" could be represented as "system:7651b327.0". By using
the subject hash, operations such as getCertificateAlias can be implemented efficiently without
scanning the entire store.
In addition to supporting the
TrustedCertificateKeyStoreSpi implementation,
TrustedCertificateStore also provides the additional public
methods isTrustAnchor(java.security.cert.X509Certificate) and findIssuer(java.security.cert.X509Certificate) to allow
efficient lookup operations for CAs again based on the file naming
convention.
The KeyChainService users the installCertificate(java.security.cert.X509Certificate) and
deleteCertificateEntry(java.lang.String) to install user CAs as well as
delete those user CAs as well as system CAs. The deletion of system
CAs is performed by placing an exact copy of that CA in the deleted
directory. Such deletions are intended to persist across upgrades
but not intended to mask a CA with a matching name or public key
but is otherwise reissued in a system update. Reinstalling a
deleted system certificate simply removes the copy from the deleted
directory, reenabling the original in the system directory.
Note that the default mutable directory is created by init via configuration in the system/core/rootdir/init.rc file. The directive "mkdir /data/misc/keychain 0775 system system" ensures that its owner and group are the system uid and system gid and that it is world readable but only writable by the system user.
-
Constructor Summary
Constructors Constructor Description TrustedCertificateStore()TrustedCertificateStore(File systemDir, File addedDir, File deletedDir)TrustedCertificateStore(URI systemDir, URI addedDir, URI deletedDir) -
Method Summary
Modifier and Type Method Description Set<String>aliases()Set<String>allSystemAliases()booleancontainsAlias(String alias)voiddeleteCertificateEntry(String alias)This could be considered the implementation ofTrustedCertificateKeyStoreSpi.engineDeleteEntrybut we considerTrustedCertificateKeyStoreSpito be read only.X509CertificatefindIssuer(X509Certificate c)This non-KeyStoreSpipublic interface is used byTrustManagerImplto locate the CA certificate that signed the providedX509Certificate.CertificategetCertificate(String alias)CertificategetCertificate(String alias, boolean includeDeletedSystem)StringgetCertificateAlias(Certificate c)List<X509Certificate>getCertificateChain(X509Certificate leaf)Attempt to build a certificate chain from the suppliedleafargument through the chain of issuers as high up as known.DategetCreationDate(String alias)voidinstallCertificate(X509Certificate cert)This non-KeyStoreSpipublic interface is used by theKeyChainServiceto install new CA certificates.static booleanisSystem(String alias)booleanisTrustAnchor(X509Certificate c)This non-KeyStoreSpipublic interface is used byTrustManagerImplto locate a CA certificate with the same name and public key as the providedX509Certificate.static booleanisUser(String alias)booleanisUserAddedCertificate(X509Certificate cert)Returns true to indicate that the certificate was added by the user, false otherwise.Set<String>userAliases()
-
Constructor Details
-
TrustedCertificateStore
public TrustedCertificateStore() -
TrustedCertificateStore
-
TrustedCertificateStore
-
-
Method Details
-
isSystem
-
isUser
-
getCertificate
-
getCertificate
-
getCreationDate
-
aliases
-
userAliases
-
allSystemAliases
-
containsAlias
-
getCertificateAlias
-
isUserAddedCertificate
Returns true to indicate that the certificate was added by the user, false otherwise. -
isTrustAnchor
This non-KeyStoreSpipublic interface is used byTrustManagerImplto locate a CA certificate with the same name and public key as the providedX509Certificate. We match on the name and public key and not the entire certificate since a CA may be reissued with the same name and PublicKey but with other differences (for example when switching signature from md2WithRSAEncryption to SHA1withRSA) -
findIssuer
This non-KeyStoreSpipublic interface is used byTrustManagerImplto locate the CA certificate that signed the providedX509Certificate. -
getCertificateChain
Attempt to build a certificate chain from the suppliedleafargument through the chain of issuers as high up as known. If the chain can't be completed, the most complete chain available will be returned. This means that a list with only theleafcertificate is returned if no issuer certificates could be found.- Throws:
CertificateException- if there was a problem parsing the certificates
-
installCertificate
This non-KeyStoreSpipublic interface is used by theKeyChainServiceto install new CA certificates. It silently ignores the certificate if it already exists in the store.- Throws:
IOExceptionCertificateException
-
deleteCertificateEntry
This could be considered the implementation ofTrustedCertificateKeyStoreSpi.engineDeleteEntrybut we considerTrustedCertificateKeyStoreSpito be read only. Instead, this is used by theKeyChainServiceto delete CA certificates.- Throws:
IOExceptionCertificateException
-