Tagged Questions
7
votes
5answers
4k views
“Unlimited Strength” JCE Policy Files
I have an app that uses 256-bit AES encryption which is not supported by Java out of the box. I know to get this to function correctly I install the JCE unlimited strength jars in the security folder. ...
2
votes
1answer
729 views
.java.policy file and local applet
I am working on an HTML page that is using Javascript to interact with a Java applet. The HTML page, javascript files, and .jar file for the applet will be deployed locally to a folder on the user's ...
1
vote
1answer
778 views
Java JCE Unlimited strength encryption security policy files
Are the JCE policy files (in {java.home}/lib/security) overwritten with the standard strength policy files after a JRE update? or are these left alone on JRE update?
EDIT: Does anyone know if the Mac ...
0
votes
0answers
93 views
How to deploy Signed applet with policy file? [closed]
Where I need to specify policy.URL.n??
How to deploy the Signed applet with policy file?
I want to write, create directory/file, execute some file??
Please help me to deploy the signed applet.
...
0
votes
2answers
399 views
Java Policy file - Deny permissions to a codebase
In the Java policy file, the grant codeBase syntax specifies which codebase should be granted which permissions. for example,
grant codeBase "file:/C:/abc.jar" {
permission
...
0
votes
1answer
154 views
Java SecurityManager: Good introduction to policy files
Can you recommend a good introduction to non-trivial policy files for the standard Java SecurityManager?
Are there examples that go beyond what the Java website offers? Or maybe someone describes how ...
0
votes
1answer
380 views
How to grant permissions to a java applet being called by JavaScript via the java.policy file
I have a single sign on application for our intranet which is supposed to read a file off the local computer as well as get the users SID and verify that the user is valid. I have a jar that is ...