[11u] RFR: 8216039: TLS with BC and RSASSA-PSS breaks ECDHServerKeyExchange

2019-07-04 Thread Langer, Christoph
Hi, please help reviewing the backport of JDK-8216039 to jdk11u-dev. Since predecessor patch JDK-8211122 could not be applied to JDK 11 updates, some manual work is necessary. In src/java.base/share/classes/java/security/Signature.java and src/java.base/share/classes/sun/security/util/Signatur

Re: RFR 8226338: Updates to Stateless Resumption

2019-07-04 Thread Xuelei Fan
SSLSessionImpl.java --- 526 boolean checkSessionTicket(HandshakeContext hc) { As the return value is a boolean type, the method is better to use "isSomething". Otherwise, the meaning of the code "!checkSessionTicket()" is clear and need to read the implementation code. Ne