[10] RFR: 8161973: PKIXRevocationChecker.getSoftFailExceptions() not working

2017-04-06 Thread Sean Mullan
Please review this fix to the getSoftFailExceptions method of PKIXRevocationChecker so that it does not always return an empty List. The problem was that the clone method of the PKIXRevocationChecker implementation was creating a new List each time it was called, and the Exceptions were not bei

Re: [10] RFR: 8161973: PKIXRevocationChecker.getSoftFailExceptions() not working

2017-04-06 Thread Xuelei Fan
Looks fine to me. Xuelei On 4/6/2017 9:46 AM, Sean Mullan wrote: Please review this fix to the getSoftFailExceptions method of PKIXRevocationChecker so that it does not always return an empty List. The problem was that the clone method of the PKIXRevocationChecker implementation was creating a

RFR 8177784 Use CounterMode intrinsic for AES/GCM

2017-04-06 Thread Anthony Scarpino
I'd like to get a review for this performance change to use the existing CounterMode parallelized intrinsic instead of GCTR's own version. The two classes were nearly identical except for the doFinal() method which doesn't belong in CounterMode.java. I could have been more aggressive with th