Re: Draft design for Key Derivation API

2017-11-08 Thread Michael StJohns
On 11/7/2017 8:17 PM, Jamil Nimeh wrote: Hi Mike, thank you for your comments and feedback.  I have a few comments and questions inline: (I have a little bit more time before my flight than i thought so see inline). On 11/06/2017 05:25 PM, Michael StJohns wrote: On 11/3/2017 4:59 P

Re: RFR [10]: JDK-8182484: Remove 1024-bit default requirement from javadoc of java.security.interfaces.DSAKeyPairGenerator

2017-11-08 Thread Valerie Peng
Hi, Sean, I updated the webrev in place - now this change contains only javadoc update of DSAKeyPairGenerator interface. CSR has also been updated accordingly. Could you please take a look? Thanks, Valerie On 11/2/2017 6:24 PM, Valerie Peng wrote: Sean, Could you help review this RFE below?

Re: [10] RFR : 8186628 : SSL session cache can cause a scalability bottleneck

2017-11-08 Thread Roger Riggs
Hi Ivan, One idea to consider is an indirection that spreads the work over multiple Cache implementations. Similar to what ConcurrentHashMap does, doing an early fan out to multiple Caches based on the key. If it was keyed to the same key as the cache, it would be able to take advantage of re-

Re: [10] RFR : 8186628 : SSL session cache can cause a scalability bottleneck

2017-11-08 Thread Ivan Gerasimov
Thank you Bernd for looking into this! On 11/7/17 11:42 PM, Bernd Eckenfels wrote: Hello, There is already a property to set the cache size, would it be enough to re-purpose a cache size of 0 to turn it off? Currently, setting the cache size to 0 means that it is unbounded, so that the ent