elharo opened a new issue, #101: URL: https://github.com/apache/maven-jarsigner/issues/101
`isSignatureFile()` only detects `.SF`, `.DSA`, `.RSA`, and `.EC` extensions. PKCS#7 signature files (`.PKCS7` or `.p7s`) used by some third-party signing tools are not detected. **File:** `JarSignerUtil.java:177-189` While the library's primary purpose is to work with jarsigner output (which only produces the four listed types), this could cause `unsignArchive()` to leave PKCS#7 signature files in the jar unexpectedly. **Suggested fix:** Add detection for `.PKCS7` and/or `.p7s` extensions in `isSignatureFile()`. -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
