On Thu, 18 May 2023 19:11:32 GMT, Ferenc Rakoczi <d...@openjdk.org> wrote:
>> Implement support for Leighton-Micali Signatures (LMS) as described in RFC >> 8554. LMS is an approved software signing algorithm for CNSA 2.0, with >> SHA-256/192 parameters recommended. > > Ferenc Rakoczi has updated the pull request incrementally with one additional > commit since the last revision: > > Removed dead code, accepted code style suggestions. src/java.base/share/classes/sun/security/provider/HSS.java line 156: > 154: if ((inLen < (24 + m)) || (checkExactLength && (inLen != (24 > + m))) || > 155: !lmsParams.hasSameHash(lmotsParams)) { > 156: throw new InvalidKeyException("Wrong LMS public Key > length"); s/Key/key/ ------------- PR Review Comment: https://git.openjdk.org/jdk/pull/13691#discussion_r1204658926