src/java.base/share/classes/java/security/Security.java
changeset 53972 43c2ab1bdfd3
parent 53018 8bf9268df0e2
equal deleted inserted replaced
53971:1019c97e1bde 53972:43c2ab1bdfd3
     1 /*
     1 /*
     2  * Copyright (c) 1996, 2018, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 1996, 2019, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.  Oracle designates this
     7  * published by the Free Software Foundation.  Oracle designates this
   199      * is not found.
   199      * is not found.
   200      */
   200      */
   201     private static void initializeStatic() {
   201     private static void initializeStatic() {
   202         props.put("security.provider.1", "sun.security.provider.Sun");
   202         props.put("security.provider.1", "sun.security.provider.Sun");
   203         props.put("security.provider.2", "sun.security.rsa.SunRsaSign");
   203         props.put("security.provider.2", "sun.security.rsa.SunRsaSign");
   204         props.put("security.provider.3", "com.sun.net.ssl.internal.ssl.Provider");
   204         props.put("security.provider.3", "sun.security.ssl.SunJSSE");
   205         props.put("security.provider.4", "com.sun.crypto.provider.SunJCE");
   205         props.put("security.provider.4", "com.sun.crypto.provider.SunJCE");
   206         props.put("security.provider.5", "sun.security.jgss.SunProvider");
   206         props.put("security.provider.5", "sun.security.jgss.SunProvider");
   207         props.put("security.provider.6", "com.sun.security.sasl.Provider");
   207         props.put("security.provider.6", "com.sun.security.sasl.Provider");
   208     }
   208     }
   209 
   209