April 2018
Intermediate to advanced
910 pages
33h 21m
English
The KeyStore.TrustedCertificateEntry class definition is as follows:
public static final class KeyStore.TrustedCertificateEntry extends Object implements KeyStore.Entry
This class holds a trusted Certificate and has the following methods:
The key to using this class is understanding the flow. First, we must load the KeyStore, using the getInstance method. Next we request access to the KeyStore instance. Then, we have access to read and write to the Object:
The following code snippet shows the load-request-access implementation:
. . . ...