Re: RFR: 8324646: Avoid Class.forName in SecureRandom constructor [v4]

2024-02-09 Thread Oli Gillespie
On Tue, 6 Feb 2024 13:52:09 GMT, Oli Gillespie wrote: >> Avoid expensive `Class.forName` call when constructing Providers such as >> `SecureRandom` which take constructor parameters. This can easily be cached >> in EngineDescription (this cache already existed before, it was removed in >> [JDK

Re: RFR: 8324646: Avoid Class.forName in SecureRandom constructor [v4]

2024-02-06 Thread Oli Gillespie
> Avoid expensive `Class.forName` call when constructing Providers such as > `SecureRandom` which take constructor parameters. This can easily be cached > in EngineDescription (this cache already existed before, it was removed in > [JDK-8280970](https://bugs.openjdk.org/browse/JDK-8280970) as un