On Tue, 28 Feb 2023 19:09:00 GMT, Eirik Bjorsnos <d...@openjdk.org> wrote:
> The `-altsigner` and `-altsignerpath` options in JarSigner with the > underlying `ContentSigner` mechanism were deprected in Java 9, for removal in > Java 15. See [JDK-8076535](https://bugs.openjdk.org/browse/JDK-8076535), > [JDK-8242260](https://bugs.openjdk.org/browse/JDK-8242260). > > This PR suggests it's time to remove this code: > > - The package `com/sun/jarsigner` is removed. This contained the > `ContentSigner` and `ContentSignerParameters` along with a > `package-info.java` file. > - `JarSigner.java` is updated to remove processing of the `-altsigner` and > `-altsignerpath` options and the loading and processing of the custom > `ContentSigner`. > - Similarly `c.s.s.t.jarsigner.Main` is updated to remove processing and > mentioning of `-altsigner` and `-altsignerpath` options. > - Mentions of the options in Resource files in the same directory is removed > - The `jarsigner.1` man page is updated to remove the section on the > deprecated options > - The `Spec` and `Options` tests are update to remove usage of the > `-altsigner` and `-altsignerpath` options. This pull request has now been integrated. Changeset: 31680b2b Author: Eirik Bjorsnos <eir...@gmail.com> Committer: Weijun Wang <wei...@openjdk.org> URL: https://git.openjdk.org/jdk/commit/31680b2bcffe03ec11204946a1e168d4d9f31d87 Stats: 646 lines in 14 files changed: 3 ins; 618 del; 25 mod 8303410: Remove ContentSigner APIs and jarsigner -altsigner and -altsignerpath options Reviewed-by: weijun ------------- PR: https://git.openjdk.org/jdk/pull/12791