src/java.base/share/classes/sun/security/ssl/Authenticator.java
branchJDK-8145252-TLS13-branch
changeset 56674 d2ba9e6f1cac
parent 56542 56aaa6cb3693
--- a/src/java.base/share/classes/sun/security/ssl/Authenticator.java	Tue Jun 05 11:53:36 2018 -0700
+++ b/src/java.base/share/classes/sun/security/ssl/Authenticator.java	Tue Jun 05 12:01:35 2018 -0700
@@ -268,8 +268,8 @@
     // For TLS 1.3
     private static final class TLS13Authenticator extends SSLAuthenticator {
         // Block size of TLS v1.3:
-        //     sequence number + record type + protocol version + record length
-        private static final int BLOCK_SIZE = 13;   // 8 + 1 + 2 + 2
+        //     record type + protocol version + record length + sequence number
+        private static final int BLOCK_SIZE = 13;   // 1 + 2 + 2 + 8
 
         private TLS13Authenticator(ProtocolVersion protocolVersion) {
             super(new byte[BLOCK_SIZE]);
@@ -403,7 +403,7 @@
         }
     }
 
-    static interface MAC {
+    interface MAC {
         MacAlg macAlg();
 
         /**