I'd like to encrypt my native libraries and decrypt them on runtime before doing System.loadLibrary("foo")
System.loadLibrary()
and System.load()
only takes libname
and filename
I've already looked at Runtime.java source code, and the library loading methods seems to depend on a native function
Is there a workaroud for this ?