|
|
Implementing Your Own Permission |
The steps Terry would take, after creating a game (
TerrysGame) that calls theHighScoregetHighScoreandsetHighScoremethods to get and set, respectively, the user's high scores, are:Compile the Game Class
javac TerrysGame.javaPlace its class file in a JAR File
jar cvf terry.jar TerrysGame.classCreate a Keystore and Keys for Signing
keytool -genkey -keystore terry.keystore -alias signTJarsSpecify whatever you want for the passwords and distinguished name information.Sign the JAR File
jarsigner -keystore terry.keystore terry.jar signTJarsExport the Public Key Certificate
keytool -export -keystore terry.keystore -alias signTJars -file Terry.cerSupply Files and Information Needed by Users
That is, supply themGame users also need files and information from Chris. For their convenience, Terry may forward this information to them:
- the signed JAR File
terry.jar,
- the public key certificate file
Terry.cer, and
- information as to the permissions the
TerrysGameclass needs. For this, Terry could supply the exact grant entry needed.
- the signed JAR File
hs.jar,
- the public key certificate file
Chris.cer, and
- information as to the permissions the
HighScoreandHighScorePermissionclasses must be granted in a policy file in order to work. This could be the exact grant entry needed.
|
|
Implementing Your Own Permission |