src/java.base/share/classes/sun/security/ssl/ClientKeyExchange.java
branchJDK-8145252-TLS13-branch
changeset 56704 c3ee22c3a0f6
parent 56542 56aaa6cb3693
child 56806 32a737f51e37
equal deleted inserted replaced
56702:75527e40bdfd 56704:c3ee22c3a0f6
    64                         return hp.getValue().produce(context, message);
    64                         return hp.getValue().produce(context, message);
    65                     }
    65                     }
    66                 }
    66                 }
    67             }
    67             }
    68 
    68 
    69             // not comsumer defined.
    69             // not consumer defined.
    70             chc.conContext.fatal(Alert.UNEXPECTED_MESSAGE,
    70             chc.conContext.fatal(Alert.UNEXPECTED_MESSAGE,
    71                         "Unexpected ClientKeyExchange handshake message.");
    71                         "Unexpected ClientKeyExchange handshake message.");
    72             return null;    // make the compiler happe
    72             return null;    // make the compiler happe
    73         }
    73         }
    74     }
    74     }
   100                         return;
   100                         return;
   101                     }
   101                     }
   102                 }
   102                 }
   103             }
   103             }
   104 
   104 
   105             // not comsumer defined.
   105             // not consumer defined.
   106             shc.conContext.fatal(Alert.UNEXPECTED_MESSAGE,
   106             shc.conContext.fatal(Alert.UNEXPECTED_MESSAGE,
   107                         "Unexpected ClientKeyExchange handshake message.");
   107                         "Unexpected ClientKeyExchange handshake message.");
   108         }
   108         }
   109     }
   109     }
   110 }
   110 }