Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a way to load a crypted file (that is a jar file), decrypted it (so obtains the real byte array) and use it without create a file on filesystem and launch it?

byte[] jarBytes=Decrypter.decrypt("my\\encrypted\\jar\\file");
//use jarBytes to execute an application without create a real File with this bytes...
share|improve this question

2 Answers

Sure.

The input stream can come from a resource (i.e., on the classpath). The bytes can be manipulated as required.

See this post for an example of loading the jar from a directory. Your version would be almost identical, except for where the bytes come from originally, and with an additional transformation step.

If anybody is that interested in your code they'll either just a) reverse-engineer your class loader, or b) just use your class loader as-is and not worry about reverse-engineering the encrypted code... but good luck anyway :)

share|improve this answer
+1 for the idea that this strategy is pointless (for "protecting da' codez" at least). – Andrew Thompson Nov 3 '11 at 0:41
2  
@AndrewThompson Thanks for SSCCE; I point people at it often (at least the .org mirror :) – Dave Newton Nov 3 '11 at 0:45
@Dave Newton: thank you but i'm not looking for a classloader, but a simple "launcher" that execute a jar file after decrypt it. Now i have to save decrypted jar as a temp file to launch it, i'm looking for a way to keep file "in-memory" without save it. – blow Nov 3 '11 at 13:12
@blow Yeah, that's a classloader. See this. – Dave Newton Nov 3 '11 at 13:28

Like this?

       Cipher c = Cipher.getInstance(ALGORITHM);
       c.init(Cipher.DECRYPT_MODE, key);
       byte[] decValue = c.doFinal(data);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.