Spec-Zone .ru
спецификации, руководства, описания, API
Trail: Security Features in Java SE
Lesson: Signing Code and Granting It Permissions
Section: Steps for the Code Receiver
Set Up a Policy File to Grant the Required Permission
Home Page > Security Features in Java SE > Signing Code and Granting It Permissions

Set Up a Policy File to Grant the Required Permission

Next, you will use the Policy Tool to create a policy file named exampleraypolicy and in it grant a permission to code from a signed JAR file.

The JAR file must have been signed using the private key corresponding to the public key imported into Ray's keystore (exampleraystore) in the previous step. The certificate containing the public key is aliased by susan in the keystore. We will grant such code permission to read any file in the C:\TestData\ directory.

The steps are:

  1. Start Policy Tool
  2. Specify the Keystore
  3. Add a Policy Entry with a SignedBy Alias
  4. Save the Policy File

Problems with the examples? Try Compiling and Running the Examples: FAQs.
Complaints? Compliments? Suggestions? Give us your feedback.

Previous page: Import the Certificate as a Trusted Certificate
Next page: Start Policy Tool