The Utils class uses a MessageDigest to calculate the seed for a promoted build. Instantiating a MessageDigest would initiate security properties which means any test using this utility class will not be able to manipulate these properties anymore since they are only read once.
This has led to test bugs inJDK-8345578 and JDK-8367583.
We can switch to CRC32C to calculate the seed.
This has led to test bugs in
We can switch to CRC32C to calculate the seed.