< prev index next >

src/share/classes/sun/security/ssl/HandshakeHash.java

Print this page
rev 13968 : 8245467: Remove 8u TLSv1.2 implementation files
rev 13969 : 8245468: Add TLSv1.3 implementation classes from 11.0.7
rev 13970 : 8245469: Remove DTLS protocol implementation

@@ -205,12 +205,11 @@
         S30HandshakeHash hh = (S30HandshakeHash)transcriptHash;
         return hh.digest(useClientLabel, masterSecret);
     }
 
     public boolean isHashable(byte handshakeType) {
-        return handshakeType != SSLHandshake.HELLO_REQUEST.id &&
-               handshakeType != SSLHandshake.HELLO_VERIFY_REQUEST.id;
+        return handshakeType != SSLHandshake.HELLO_REQUEST.id;
     }
 
     interface TranscriptHash {
         void update(byte[] input, int offset, int length);
         byte[] digest();
< prev index next >