Konrad Garus
Konrad Garus

Reputation: 54055

Expired certificate for Java Web Start

How does JWS react to code signing certificate expiration?

From my observation it appears to ignore expiration date of CA-signed certificates, but I would like to find some hard proof (e.g. official documentation) that confirms this.

Upvotes: 3

Views: 1730

Answers (1)

Tom Hawtin - tackline
Tom Hawtin - tackline

Reputation: 147164

If the signed jar is given a timestamp (which comes from a timestamp authority), then the signature will still be valid even after the certificate has expired (assuming the timestamp is prior to the expiry).

See Signature Timestamp Support for J2SE 5.0

Upvotes: 4

Related Questions