home *** CD-ROM | disk | FTP | other *** search
/ PC World 2001 March / PCWorld_2001-03_cd.bin / Software / Komercni / VAgeJava / ivj35 / setup / IDE.Cab / F9999_java.security < prev   
Text File  |  2000-05-16  |  4KB  |  104 lines

  1. #
  2. # This is the "master security properties file".
  3. #
  4. # In this file, various security properties are set for use by
  5. # java.security classes. This is where users can statically register 
  6. # Cryptography Package Providers ("providers" for short). The term 
  7. # "provider" refers to a package or set of packages that supply a 
  8. # concrete implementation of a subset of the cryptography aspects of 
  9. # the Java Security API. A provider may, for example, implement one or 
  10. # more digital signature algorithms or message digest algorithms.
  11. #
  12. # Each provider must implement a subclass of the Provider class.
  13. # To register a provider in this master security properties file, 
  14. # specify the Provider subclass name and priority in the format
  15. #
  16. #    security.provider.<n>=<className> 
  17. #
  18. # This declares a provider, and specifies its preference 
  19. # order n. The preference order is the order in which providers are 
  20. # searched for requested algorithms (when no specific provider is 
  21. # requested). The order is 1-based; 1 is the most preferred, followed 
  22. # by 2, and so on.
  23. #
  24. # <className> must specify the subclass of the Provider class whose 
  25. # constructor sets the values of various properties that are required
  26. # for the Java Security API to look up the algorithms or other 
  27. # facilities implemented by the provider.
  28. # There must be at least one provider specification in java.security. 
  29. # There is a default provider that comes standard with the JDK. It
  30. # is called the "SUN" provider, and its Provider subclass
  31. # named Sun appears in the sun.security.provider package. Thus, the
  32. # "SUN" provider is registered via the following:
  33. #
  34. #    security.provider.1=sun.security.provider.Sun 
  35. #
  36. # (The number 1 is used for the default provider.) 
  37. #
  38. # Note: Statically registered Provider subclasses are instantiated 
  39. # when the system is initialized. Providers can be dynamically 
  40. # registered instead by calls to either the addProvider or 
  41. # insertProviderAt method in the Security class.
  42.  
  43. #
  44. # List of providers and their preference orders (see above):
  45. #
  46. security.provider.1=sun.security.provider.Sun
  47.  
  48. #
  49. # Class to instantiate as the system Policy. This is the name of the class
  50. # that will be used as the Policy object.
  51. #
  52. policy.provider=sun.security.provider.PolicyFile
  53.  
  54. # The default is to have a single system-wide policy file, 
  55. # and a policy file in the user's home directory.
  56. policy.url.1=file:${java.home}/lib/security/java.policy
  57. policy.url.2=file:${user.home}/.java.policy
  58.  
  59. # whether or not we expand properties in the policy file
  60. # if this is set to false, properties (${...}) will not be expanded in policy
  61. # files.
  62. policy.expandProperties=true
  63.  
  64. # whether or not we allow an extra policy to be passed on the command line
  65. # with -Djava.security.policy=somefile. Comment out this line to disable
  66. # this feature.
  67. policy.allowSystemProperty=true
  68.  
  69. # whether or not we look into the IdentityScope for trusted Identities
  70. # when encountering a 1.1 signed JAR file. If the identity is found
  71. # and is trusted, we grant it AllPermission.
  72. policy.ignoreIdentityScope=false
  73.  
  74. #
  75. # Default keystore type.
  76. #
  77. keystore.type=jks
  78.  
  79. #
  80. # Class to instantiate as the system scope:
  81. #
  82. system.scope=sun.security.provider.IdentityDatabase
  83.  
  84. #
  85. # List of comma-separated packages that start with or equal this string
  86. # will cause a security exception to be thrown when
  87. # passed to checkPackageAccess unless the
  88. # corresponding RuntimePermission ("accessClassInPackage."+package) has
  89. # been granted.
  90. package.access=sun.
  91.  
  92. #
  93. # List of comma-separated packages that start with or equal this string
  94. # will cause a security exception to be thrown when
  95. # passed to checkPackageDefinition unless the
  96. # corresponding RuntimePermission ("defineClassInPackage."+package) has
  97. # been granted.
  98. # by default, no packages are restricted for definition, and none of
  99. # the class loaders supplied with the JDK call checkPackageDefinition.
  100. #
  101. #package.definition=
  102.