mirror of
https://github.com/openjdk/jdk.git
synced 2026-05-20 10:27:52 +00:00
8152108: Correct jarsigner warning message about missing timestamp
Reviewed-by: mullan
This commit is contained in:
parent
90cd96154e
commit
65360411bb
@ -247,9 +247,9 @@ public class Resources extends java.util.ListResourceBundle {
|
||||
{"This.jar.contains.entries.whose.certificate.chain.is.not.validated.reason.1",
|
||||
"This jar contains entries whose certificate chain is not validated. Reason: %s"},
|
||||
{"no.timestamp.signing",
|
||||
"No -tsa or -tsacert is provided and this jar is not timestamped. Without a timestamp, users may not be able to validate this jar after the signer certificate's expiration date (%1$tY-%1$tm-%1$td) or after any future revocation date."},
|
||||
"No -tsa or -tsacert is provided and this jar is not timestamped. Without a timestamp, users may not be able to validate this jar after the signer certificate's expiration date (%1$tY-%1$tm-%1$td)."},
|
||||
{"no.timestamp.verifying",
|
||||
"This jar contains signatures that does not include a timestamp. Without a timestamp, users may not be able to validate this jar after the signer certificate's expiration date (%1$tY-%1$tm-%1$td) or after any future revocation date."},
|
||||
"This jar contains signatures that does not include a timestamp. Without a timestamp, users may not be able to validate this jar after the signer certificate's expiration date (%1$tY-%1$tm-%1$td)."},
|
||||
{"Unknown.password.type.", "Unknown password type: "},
|
||||
{"Cannot.find.environment.variable.",
|
||||
"Cannot find environment variable: "},
|
||||
|
||||
@ -118,13 +118,13 @@ public abstract class Test {
|
||||
+ "and this jar is not timestamped. "
|
||||
+ "Without a timestamp, users may not be able to validate this jar "
|
||||
+ "after the signer certificate's expiration date "
|
||||
+ "(%1$tY-%1$tm-%1$td) or after any future revocation date.";
|
||||
+ "(%1$tY-%1$tm-%1$td).";
|
||||
|
||||
static final String NO_TIMESTAMP_VERIFYING_WARN_TEMPLATE
|
||||
= "This jar contains signatures that does not include a timestamp. "
|
||||
+ "Without a timestamp, users may not be able to validate this jar "
|
||||
+ "after the signer certificate's expiration date "
|
||||
+ "(%1$tY-%1$tm-%1$td) or after any future revocation date.";
|
||||
+ "(%1$tY-%1$tm-%1$td).";
|
||||
|
||||
static final String NOT_YET_VALID_CERT_SIGNING_WARNING
|
||||
= "The signer certificate is not yet valid.";
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user