aooohan commented on code in PR #675: URL: https://github.com/apache/tomcat/pull/675#discussion_r1376990387
########## java/org/apache/tomcat/util/net/jsse/PEMFile.java: ########## @@ -624,6 +626,16 @@ private byte[] fromHex(String hexString) { } return bytes; } + + + private String toDottedOidString(byte[] oidBytes) { + try { + Oid oid = new Oid(oidBytes); + return oid.toString(); + } catch (GSSException e) { + throw new IllegalArgumentException(e.getMajorString()); Review Comment: I think this only needd to return a hex string of `oidBytes` if it does not follow format as the message in GSSException only show a tip 'Improperly formatted ASN.1 DER encoding for Oid' which will not help. ```suggestion return HexUtils.toHexString(oidBytes) ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org