Issue a command similar to the following to import the certificate into the java trust store: keytool -importcert -alias <aliasname> -file <certificate file> -keystore /etc/alternatives/jre/lib/security/cacerts --storepass changeit Notes: Type yes when prompted to trust the certificate. Enter...
A DESCRIPTION OF THE REQUEST : If the Verisign timestamping certificate at:- https://knowledge.verisign.com/resources/sites/VERISIGN/content/live/SOLUTION/9000/SO9699/en_US/TimestampCA.cer was added to cacerts in the JRE then timestamping of applets would be possible using the jarsigner ...
// ParseCertificate converts a cert.Certificate to Certificate. func ParseCertificate(c *cert.Certificate) *Certificate { certPEM, keyPEM := c.ToPEM() return &Certificate{ Certificate: certPEM, Key: keyPEM, } } func (c *Config) loadSelfCertPool() (*x509.CertPool, error) { root := x5...