mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 14:54:52 +02:00
8215937: Check usages of security-related Resources files
Reviewed-by: mullan
This commit is contained in:
parent
db89805fe0
commit
54815061a1
8 changed files with 271 additions and 590 deletions
|
@ -3784,9 +3784,9 @@ public final class Main {
|
|||
replyCerts.length);
|
||||
tmpCerts[tmpCerts.length-1] = root.snd;
|
||||
replyCerts = tmpCerts;
|
||||
checkWeak(String.format(rb.getString(fromKeyStore ?
|
||||
"alias.in.keystore" :
|
||||
"alias.in.cacerts"),
|
||||
checkWeak(String.format(fromKeyStore
|
||||
? rb.getString("alias.in.keystore")
|
||||
: rb.getString("alias.in.cacerts"),
|
||||
root.fst),
|
||||
root.snd);
|
||||
}
|
||||
|
|
|
@ -253,7 +253,6 @@ public class Resources extends java.util.ListResourceBundle {
|
|||
{"Keystore.password.is.too.short.must.be.at.least.6.characters",
|
||||
"Keystore password is too short - must be at least 6 characters"},
|
||||
{"Unknown.Entry.Type", "Unknown Entry Type"},
|
||||
{"Too.many.failures.Alias.not.changed", "Too many failures. Alias not changed"},
|
||||
{"Entry.for.alias.alias.successfully.imported.",
|
||||
"Entry for alias {0} successfully imported."},
|
||||
{"Entry.for.alias.alias.not.imported.", "Entry for alias {0} not imported."},
|
||||
|
@ -314,10 +313,6 @@ public class Resources extends java.util.ListResourceBundle {
|
|||
{"Too.many.failures.Key.entry.not.cloned",
|
||||
"Too many failures. Key entry not cloned"},
|
||||
{"key.password.for.alias.", "key password for <{0}>"},
|
||||
{"Keystore.entry.for.id.getName.already.exists",
|
||||
"Keystore entry for <{0}> already exists"},
|
||||
{"Creating.keystore.entry.for.id.getName.",
|
||||
"Creating keystore entry for <{0}> ..."},
|
||||
{"No.entries.from.identity.database.added",
|
||||
"No entries from identity database added"},
|
||||
{"Alias.name.alias", "Alias name: {0}"},
|
||||
|
@ -355,7 +350,6 @@ public class Resources extends java.util.ListResourceBundle {
|
|||
{"Do.you.still.want.to.add.it.to.your.own.keystore.no.",
|
||||
"Do you still want to add it to your own keystore? [no]: "},
|
||||
{"Trust.this.certificate.no.", "Trust this certificate? [no]: "},
|
||||
{"YES", "YES"},
|
||||
{"New.prompt.", "New {0}: "},
|
||||
{"Passwords.must.differ", "Passwords must differ"},
|
||||
{"Re.enter.new.prompt.", "Re-enter new {0}: "},
|
||||
|
@ -395,7 +389,6 @@ public class Resources extends java.util.ListResourceBundle {
|
|||
{"Signer.d.", "Signer #%d:"},
|
||||
{"Timestamp.", "Timestamp:"},
|
||||
{"Signature.", "Signature:"},
|
||||
{"CRLs.", "CRLs:"},
|
||||
{"Certificate.owner.", "Certificate owner: "},
|
||||
{"Not.a.signed.jar.file", "Not a signed jar file"},
|
||||
{"No.certificate.from.the.SSL.server",
|
||||
|
@ -414,13 +407,10 @@ public class Resources extends java.util.ListResourceBundle {
|
|||
"Certificate reply does not contain public key for <{0}>"},
|
||||
{"Incomplete.certificate.chain.in.reply",
|
||||
"Incomplete certificate chain in reply"},
|
||||
{"Certificate.chain.in.reply.does.not.verify.",
|
||||
"Certificate chain in reply does not verify: "},
|
||||
{"Top.level.certificate.in.reply.",
|
||||
"Top-level certificate in reply:\n"},
|
||||
{".is.not.trusted.", "... is not trusted. "},
|
||||
{"Install.reply.anyway.no.", "Install reply anyway? [no]: "},
|
||||
{"NO", "NO"},
|
||||
{"Public.keys.in.reply.and.keystore.don.t.match",
|
||||
"Public keys in reply and keystore don't match"},
|
||||
{"Certificate.reply.and.certificate.in.keystore.are.identical",
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2000, 2018, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
|
@ -66,8 +66,6 @@ public class Resources extends java.util.ListResourceBundle {
|
|||
{"Subject.", "Subject:\n"},
|
||||
{".Principal.", "\tPrincipal: "},
|
||||
{".Public.Credential.", "\tPublic Credential: "},
|
||||
{".Private.Credentials.inaccessible.",
|
||||
"\tPrivate Credentials inaccessible\n"},
|
||||
{".Private.Credential.", "\tPrivate Credential: "},
|
||||
{".Private.Credential.inaccessible.",
|
||||
"\tPrivate Credential inaccessible\n"},
|
||||
|
@ -89,16 +87,6 @@ public class Resources extends java.util.ListResourceBundle {
|
|||
"invalid null CallbackHandler provided"},
|
||||
{"null.subject.logout.called.before.login",
|
||||
"null subject - logout called before login"},
|
||||
{"unable.to.instantiate.LoginModule.module.because.it.does.not.provide.a.no.argument.constructor",
|
||||
"unable to instantiate LoginModule, {0}, because it does not provide a no-argument constructor"},
|
||||
{"unable.to.instantiate.LoginModule",
|
||||
"unable to instantiate LoginModule"},
|
||||
{"unable.to.instantiate.LoginModule.",
|
||||
"unable to instantiate LoginModule: "},
|
||||
{"unable.to.find.LoginModule.class.",
|
||||
"unable to find LoginModule class: "},
|
||||
{"unable.to.access.LoginModule.",
|
||||
"unable to access LoginModule: "},
|
||||
{"Login.Failure.all.modules.ignored",
|
||||
"Login Failure: all modules ignored"},
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue