On Wed, 23 Feb 2022 19:25:10 GMT, Xue-Lei Andrew Fan <[email protected]> wrote:
> In the SignatureUtil implementation, the checkName() requires
> case-insensitive input for "OID". However, the method is called before the
> case conversion, for example:
>
> sigName = checkName(sigName).toUpperCase(Locale.ENGLISH);
>
> This update also clean up redundant calls to the checkName() method.
Looks good. Thanks~
src/java.base/share/classes/sun/security/util/SignatureUtil.java line 54:
> 52: *
> 53: * @param algName input, could be in any form
> 54: * @return the matching stdName, or {@code algName} if it is not in
> the
nit: simplify this return description and emphasize upper case here also? E.g.
the matching stdName or the OID string in upper case.
-------------
Marked as reviewed by valeriep (Reviewer).
PR: https://git.openjdk.java.net/jdk/pull/7598