On Tue, 15 Feb 2022 15:16:58 GMT, Weijun Wang <wei...@openjdk.org> wrote:
>> The enhancement adds two extra items in the `getSubjectAlternativeNames()` >> output for an OtherName. >> >> It also fix several errors: >> 1. In `OtherName.java`, `nameValue` should be the value inside `CONTEXT [0]` >> without the tag and length bytes. >> 2. The argument in constructor `extClass.getConstructor(Object.class)` is >> suspicious. Maybe it meant `byte[]`. > > Weijun Wang has updated the pull request incrementally with one additional > commit since the last revision: > > string at 4th place test/jdk/sun/security/x509/OtherName/Parse.java line 89: > 87: int found = 0; > 88: for (var san : x.getSubjectAlternativeNames()) { > 89: if (san.size() == 4) { Make it `>=` if this is going to change in the future.. ------------- PR: https://git.openjdk.java.net/jdk/pull/7167