Re: RFR: 8325506: Ensure randomness is only read from provided SecureRandom object [v3]

2024-02-17 Thread Weijun Wang
On Sat, 17 Feb 2024 01:01:49 GMT, Valerie Peng wrote: >> Weijun Wang has updated the pull request incrementally with one additional >> commit since the last revision: >> >> assertNotEqualsByteArray > > test/lib/jdk/test/lib/Asserts.java line 285: > >> 283: * @param lhs The left hand sid

Re: RFR: 8325506: Ensure randomness is only read from provided SecureRandom object [v3]

2024-02-16 Thread Valerie Peng
On Tue, 13 Feb 2024 22:30:28 GMT, Weijun Wang wrote: >> Many crypto service classes require a `SecureRandom` object at >> initialization. This test goes through each of them and calculates >> (generate, encrypt, sign,...) twice with the same `SecureRandom` object and >> ensures the output is t

Re: RFR: 8325506: Ensure randomness is only read from provided SecureRandom object [v3]

2024-02-16 Thread Valerie Peng
On Tue, 13 Feb 2024 22:30:28 GMT, Weijun Wang wrote: >> Many crypto service classes require a `SecureRandom` object at >> initialization. This test goes through each of them and calculates >> (generate, encrypt, sign,...) twice with the same `SecureRandom` object and >> ensures the output is t

Re: RFR: 8325506: Ensure randomness is only read from provided SecureRandom object [v3]

2024-02-13 Thread Weijun Wang
> Many crypto service classes require a `SecureRandom` object at > initialization. This test goes through each of them and calculates (generate, > encrypt, sign,...) twice with the same `SecureRandom` object and ensures the > output is the same. Weijun Wang has updated the pull request incremen