Integrated: 8347123: Add missing @serial tags to other modules

2025-02-17 Thread Hannes Wallnöfer
On Wed, 8 Jan 2025 20:13:50 GMT, Hannes Wallnöfer wrote: > Please review a doc-only change to mostly add missing `@serial` javadoc tags. > This is a sub-task of [JDK-8286931] to allow us to re-enable the javadoc > `-serialwarn` option in the JDK doc build, which has been disabled since JDK > 1

RFR: 8349721: Add aarch64 intrinsics for ML-KEM

2025-02-17 Thread Ferenc Rakoczi
By using the aarch64 vector registers the speed of the computation of the ML-KEM algorithms (key generation, encapsulation, decapsulation) can be approximately doubled. - Commit messages: - removing trailing spaces - kyber aarch64 intrinsics Changes: https://git.openjdk.org/jdk/p

Re: RFR: 8347123: Add missing @serial tags to other modules [v2]

2025-02-17 Thread Alan Bateman
On Fri, 24 Jan 2025 10:58:24 GMT, Hannes Wallnöfer wrote: >> Please review a doc-only change to mostly add missing `@serial` javadoc >> tags. This is a sub-task of [JDK-8286931] to allow us to re-enable the >> javadoc `-serialwarn` option in the JDK doc build, which has been disabled >> since

Re: RFR: 8342238: Test javax/crypto/CryptoPermissions/InconsistentEntries.java writes files in tested JDK dir

2025-02-17 Thread Fernando Guallini
On Mon, 20 Jan 2025 16:20:27 GMT, Fernando Guallini wrote: > The test javax/crypto/CryptoPermissions/InconsistentEntries.java should not > modify the JDK home directory under test as that could impact the results of > other tests, or it could fail if the JDK home dir is read-only. > > This PR

Re: RFR: 8349492: Update sun/security/pkcs12/KeytoolOpensslInteropTest.java to use a recent Openssl version [v4]

2025-02-17 Thread Fernando Guallini
> This updates the OpenSSL version that is used by test > `sun/security/pkcs12/KeytoolOpensslInteropTest.java` to the current LTS > version (3.0 series). > There are some differences between the 1.1.x and the current OpenSSL version: > - RC4 is not longer enabled by default, therefore adding the

Re: RFR: 8349492: Update sun/security/pkcs12/KeytoolOpensslInteropTest.java to use a recent Openssl version [v2]

2025-02-17 Thread Fernando Guallini
On Fri, 14 Feb 2025 17:20:11 GMT, Weijun Wang wrote: > Or "current version". I regret using this in my previous comment. I meant > "this one particular version" there. > > And yes, it will be clear if you mention the "current version as defined by > ...". Thanks, updated now - P

RFR: 8349664: Certificate.java toString HEX dump should always use ASCII or ISO_8859_1

2025-02-17 Thread Mikhail Yankelevich
Changed `HexDumpEncoder`, so `encodeBuffer` always uses ISO_8859_1. This also fixes the issue with conversion in `encode` method, as the input is always ISO_8859_1. - Commit messages: - 8349664: Certificate.java toString HEX dump should always use ASCII or ISO_8859_1 Changes: htt