jdk/src/java.base/share/classes/sun/security/ssl/EphemeralKeyManager.java
changeset 28059 e576535359cc
parent 25859 3317bb8137f4
child 32649 2ee9017c7597
equal deleted inserted replaced
28058:87940c838900 28059:e576535359cc
    39     private final static int INDEX_RSA512 = 0;
    39     private final static int INDEX_RSA512 = 0;
    40     private final static int INDEX_RSA1024 = 1;
    40     private final static int INDEX_RSA1024 = 1;
    41 
    41 
    42     /*
    42     /*
    43      * Current cached RSA KeyPairs. Elements are never null.
    43      * Current cached RSA KeyPairs. Elements are never null.
    44      * Indexed via the the constants above.
    44      * Indexed via the constants above.
    45      */
    45      */
    46     private final EphemeralKeyPair[] keys = new EphemeralKeyPair[] {
    46     private final EphemeralKeyPair[] keys = new EphemeralKeyPair[] {
    47         new EphemeralKeyPair(null),
    47         new EphemeralKeyPair(null),
    48         new EphemeralKeyPair(null),
    48         new EphemeralKeyPair(null),
    49     };
    49     };