6870335: Provider numbers need to be bumped to 1.7
Reviewed-by: mullan
This commit is contained in:
parent
d9b6a2252e
commit
e35a79a518
@ -51,7 +51,7 @@ public final class Provider extends java.security.Provider {
|
||||
" server mechanisms for: DIGEST-MD5, GSSAPI, CRAM-MD5)";
|
||||
|
||||
public Provider() {
|
||||
super("SunSASL", 1.5, info);
|
||||
super("SunSASL", 1.7d, info);
|
||||
|
||||
AccessController.doPrivileged(new PrivilegedAction<Void>() {
|
||||
public Void run() {
|
||||
|
@ -62,7 +62,7 @@ public final class SunProvider extends Provider {
|
||||
|
||||
public SunProvider() {
|
||||
/* We are the Sun JGSS provider */
|
||||
super("SunJGSS", 1.0, INFO);
|
||||
super("SunJGSS", 1.7d, INFO);
|
||||
|
||||
AccessController.doPrivileged(
|
||||
new java.security.PrivilegedAction<Void>() {
|
||||
|
@ -46,7 +46,7 @@ public final class Sun extends Provider {
|
||||
|
||||
public Sun() {
|
||||
/* We are the SUN provider */
|
||||
super("SUN", 1.6, INFO);
|
||||
super("SUN", 1.7, INFO);
|
||||
|
||||
// if there is no security manager installed, put directly into
|
||||
// the provider. Otherwise, create a temporary map and use a
|
||||
|
@ -40,7 +40,7 @@ public final class SunPCSC extends Provider {
|
||||
private static final long serialVersionUID = 6168388284028876579L;
|
||||
|
||||
public SunPCSC() {
|
||||
super("SunPCSC", 1.6d, "Sun PC/SC provider");
|
||||
super("SunPCSC", 1.7d, "Sun PC/SC provider");
|
||||
AccessController.doPrivileged(new PrivilegedAction<Void>() {
|
||||
public Void run() {
|
||||
put("TerminalFactory.PC/SC", "sun.security.smartcardio.SunPCSC$Factory");
|
||||
|
@ -103,7 +103,7 @@ public abstract class SunJSSE extends java.security.Provider {
|
||||
|
||||
// standard constructor
|
||||
protected SunJSSE() {
|
||||
super("SunJSSE", 1.6d, info);
|
||||
super("SunJSSE", 1.7d, info);
|
||||
subclassCheck();
|
||||
if (Boolean.TRUE.equals(fips)) {
|
||||
throw new ProviderException
|
||||
|
Loading…
x
Reference in New Issue
Block a user