Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.java.programmer > #6665

Re: Unsealing a jar file at runtime

From lewbloch <lewbloch@gmail.com>
Newsgroups comp.lang.java.programmer
Subject Re: Unsealing a jar file at runtime
Date 2011-07-29 13:42 -0700
Organization http://groups.google.com
Message-ID <20195ac2-49bf-4f5e-9b56-f059fa9ae2e7@s33g2000prg.googlegroups.com> (permalink)
References <f0b4a955-9046-4f5d-9fe1-1fc8feea535d@p31g2000vbs.googlegroups.com> <slrnj32hi4.6gl.avl@gamma.logic.tuwien.ac.at>

Show all headers | View raw


On Jul 28, 4:21 am, Andreas Leitgeb <a...@gamma.logic.tuwien.ac.at>
wrote:
> raph...@gmail.com <raph...@gmail.com> wrote:
> > I don't suppose that this is possible, perhaps with reflection?
> > The idea is for a plugin to extend a class, but the class is not a
> > public class, so can only be extended from within the same package.
> > If the jar file was unsealed, then a class could be created within the
> > plugin that is in the same package, is public and extends the non-
> > public class.
>
> Breaking open a seal is typically easily done.
> Reinstating someone else's seal on the changed
> content is "believed" to be much harder. I also
> believe that it is, but I'm no crypto-expert.

Even were you to succeed in extending the package-private class and
making it public, there are gotchas.  The parent class (the one
already in the JAR) could make assumptions of package-private
visibility that a public subclass would break, e.g., exposure of
package-private methods or attributes for use by its putative friends.

--
Lew

Back to comp.lang.java.programmer | Previous | NextPrevious in thread | Next in thread | Find similar


Thread

Unsealing a jar file at runtime "raphfrk@gmail.com" <raphfrk@gmail.com> - 2011-07-28 02:36 -0700
  Re: Unsealing a jar file at runtime Andreas Leitgeb <avl@gamma.logic.tuwien.ac.at> - 2011-07-28 11:21 +0000
    Re: Unsealing a jar file at runtime lewbloch <lewbloch@gmail.com> - 2011-07-29 13:42 -0700
    Re: Unsealing a jar file at runtime "raphfrk@gmail.com" <raphfrk@gmail.com> - 2011-08-01 14:48 -0700
      Re: Unsealing a jar file at runtime Eric Sosman <esosman@ieee-dot-org.invalid> - 2011-08-01 21:22 -0400
      Re: Unsealing a jar file at runtime Andreas Leitgeb <avl@gamma.logic.tuwien.ac.at> - 2011-08-02 13:41 +0000

csiph-web