On Wed, 19 Feb 2025 21:31:08 GMT, Artur Barashev <abaras...@openjdk.org> wrote:
>> Hi, >> >> I need a review for the following change. Naming conventions for EdDSA and >> XDH have inconsistencies between DisabledAlgorithms and KeyPairGenerator. >> These internal changes help make it more consistent when parsing the actual >> curve being used vs the broader algorithm name. >> >> thanks >> >> Tony > > src/java.base/share/classes/sun/security/util/AbstractAlgorithmConstraints.java > line 133: > >> 131: for (String a : algorithms) { >> 132: if (algorithm.equalsIgnoreCase(a) || >> 133: getAliases(a).contains(algorithm)) { > > We do case-insensitive match for the algorithm itself but then we do > case-sensitive aliases lookup and case-sensitive match for the aliases > `contains` call? Yep, thanks. ------------- PR Review Comment: https://git.openjdk.org/jdk/pull/23647#discussion_r1962562833