Re: [12] RFR 8215694: keytool cannot generate RSASSA-PSS certificates

2019-01-06 Thread Weijun Wang
Hi Xuelei, Webrev updated at https://cr.openjdk.java.net/~weijun/8215694/webrev.01 A new method AlgorithmId::getWithParameterSpec is added. I also cached 6 constants in AlgorithmId $PSSParamsHolder, although the static block inside it to generate the AlgorithmIds are a little heavy. We can

JCA Provider Service

2019-01-06 Thread Will Sargent
Hi all, I've put together a small project that will autoload custom JCA providers, bypassing the need to append to the java.security.properties file (which is not well documented), allowing for some programmatic access, and adding some logging. https://github.com/tersesystems/jcaprovider It's pu

Re: JCA Provider Service

2019-01-06 Thread Alan Bateman
On 07/01/2019 03:46, Will Sargent wrote: Hi all, I've put together a small project that will autoload custom JCA providers, bypassing the need to append to the java.security.properties file (which is not well documented), allowing for some programmatic access, and adding some logging. Have