jdk/src/java.base/share/classes/sun/security/ssl/MAC.java
changeset 32649 2ee9017c7597
parent 31538 0981099a3e54
equal deleted inserted replaced
32648:1fa861caf840 32649:2ee9017c7597
    47  * @author David Brownell
    47  * @author David Brownell
    48  * @author Andreas Sterbenz
    48  * @author Andreas Sterbenz
    49  */
    49  */
    50 final class MAC extends Authenticator {
    50 final class MAC extends Authenticator {
    51 
    51 
    52     final static MAC TLS_NULL = new MAC(false);
    52     static final MAC TLS_NULL = new MAC(false);
    53 
    53 
    54     // Value of the null MAC is fixed
    54     // Value of the null MAC is fixed
    55     private static final byte[] nullMAC = new byte[0];
    55     private static final byte[] nullMAC = new byte[0];
    56 
    56 
    57     // internal identifier for the MAC algorithm
    57     // internal identifier for the MAC algorithm