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 #
  29 # There must be at least one provider specification in java.security.
  30 # There is a default provider that comes standard with the JDK. It
  31 # is called the "SUN" provider, and its Provider subclass
  32 # named Sun appears in the sun.security.provider package. Thus, the
  33 # "SUN" provider is registered via the following:
  34 #
  35 #    security.provider.1=sun.security.provider.Sun
  36 #
  37 # (The number 1 is used for the default provider.)
  38 #
  39 # Note: Providers can be dynamically registered instead by calls to
  40 # either the addProvider or insertProviderAt method in the Security
  41 # class.
  42 
  43 #
  44 # List of providers and their preference orders (see above):
  45 #
  46 security.provider.1=sun.security.pkcs11.SunPKCS11 ${java.home}/lib/security/sunpkcs11-solaris.cfg
  47 security.provider.2=sun.security.provider.Sun
  48 security.provider.3=sun.security.rsa.SunRsaSign
  49 security.provider.4=com.sun.net.ssl.internal.ssl.Provider
  50 security.provider.5=com.sun.crypto.provider.SunJCE
  51 security.provider.6=sun.security.jgss.SunProvider
  52 security.provider.7=com.sun.security.sasl.Provider
  53 security.provider.8=org.jcp.xml.dsig.internal.dom.XMLDSigRI
  54 security.provider.9=sun.security.smartcardio.SunPCSC
  55 
  56 #
  57 # Select the source of seed data for SecureRandom. By default an
  58 # attempt is made to use the entropy gathering device specified by 
  59 # the securerandom.source property. If an exception occurs when
  60 # accessing the URL then the traditional system/thread activity 
  61 # algorithm is used. 
  62 #
  63 # On Solaris and Linux systems, if file:/dev/urandom is specified and it
  64 # exists, a special SecureRandom implementation is activated by default.
  65 # This "NativePRNG" reads random bytes directly from /dev/urandom.
  66 #
  67 # On Windows systems, the URLs file:/dev/random and file:/dev/urandom
  68 # enables use of the Microsoft CryptoAPI seed functionality.
  69 #
  70 securerandom.source=file:/dev/urandom
  71 #
  72 # The entropy gathering device is described as a URL and can also
  73 # be specified with the system property "java.security.egd". For example,
  74 #   -Djava.security.egd=file:/dev/urandom
  75 # Specifying this system property will override the securerandom.source 
  76 # setting.
  77 
  78 #
  79 # Class to instantiate as the javax.security.auth.login.Configuration
  80 # provider.
  81 #
  82 login.configuration.provider=com.sun.security.auth.login.ConfigFile
  83 
  84 #
  85 # Default login configuration file
  86 #
  87 #login.config.url.1=file:${user.home}/.java.login.config
  88 
  89 #
  90 # Class to instantiate as the system Policy. This is the name of the class
  91 # that will be used as the Policy object.
  92 #
  93 policy.provider=sun.security.provider.PolicyFile
  94 
  95 # The default is to have a single system-wide policy file,
  96 # and a policy file in the user's home directory.
  97 policy.url.1=file:${java.home}/lib/security/java.policy
  98 policy.url.2=file:${user.home}/.java.policy
  99 
 100 # whether or not we expand properties in the policy file
 101 # if this is set to false, properties (${...}) will not be expanded in policy
 102 # files.
 103 policy.expandProperties=true
 104 
 105 # whether or not we allow an extra policy to be passed on the command line
 106 # with -Djava.security.policy=somefile. Comment out this line to disable
 107 # this feature.
 108 policy.allowSystemProperty=true
 109 
 110 # whether or not we look into the IdentityScope for trusted Identities
 111 # when encountering a 1.1 signed JAR file. If the identity is found
 112 # and is trusted, we grant it AllPermission.
 113 policy.ignoreIdentityScope=false
 114 
 115 #
 116 # Default keystore type.
 117 #
 118 keystore.type=jks
 119 
 120 #
 121 # Class to instantiate as the system scope:
 122 #
 123 system.scope=sun.security.provider.IdentityDatabase
 124 
 125 #
 126 # List of comma-separated packages that start with or equal this string
 127 # will cause a security exception to be thrown when
 128 # passed to checkPackageAccess unless the
 129 # corresponding RuntimePermission ("accessClassInPackage."+package) has
 130 # been granted.
 131 package.access=sun.,\
 132                com.sun.xml.internal.,\
 133                com.sun.imageio.,\
 134                com.sun.istack.internal.,\
 135                com.sun.jmx.,\
 136                com.sun.org.apache.bcel.internal.,\
 137                com.sun.org.apache.regexp.internal.,\
 138                com.sun.org.apache.xerces.internal.,\
 139                com.sun.org.apache.xpath.internal.,\
 140                com.sun.org.apache.xalan.internal.extensions.,\
 141                com.sun.org.apache.xalan.internal.lib.,\
 142                com.sun.org.apache.xalan.internal.res.,\
 143                com.sun.org.apache.xalan.internal.templates.,\
 144                com.sun.org.apache.xalan.internal.xslt.,\
 145                com.sun.org.apache.xalan.internal.xsltc.cmdline.,\
 146                com.sun.org.apache.xalan.internal.xsltc.compiler.,\
 147                com.sun.org.apache.xalan.internal.xsltc.trax.,\
 148                com.sun.org.apache.xalan.internal.xsltc.util.,\
 149                com.sun.org.apache.xml.internal.res.,\
 150                com.sun.org.apache.xml.internal.serializer.utils.,\
 151                com.sun.org.apache.xml.internal.utils.,\
 152                com.sun.org.glassfish.
 153 
 154 #
 155 # List of comma-separated packages that start with or equal this string
 156 # will cause a security exception to be thrown when
 157 # passed to checkPackageDefinition unless the
 158 # corresponding RuntimePermission ("defineClassInPackage."+package) has
 159 # been granted.
 160 #
 161 # by default, none of the class loaders supplied with the JDK call
 162 # checkPackageDefinition.
 163 #
 164 package.definition=sun.,\
 165                    com.sun.xml.internal.,\
 166                    com.sun.imageio.,\
 167                    com.sun.istack.internal.,\
 168                    com.sun.jmx.,\
 169                    com.sun.org.apache.bcel.internal.,\
 170                    com.sun.org.apache.regexp.internal.,\
 171                    com.sun.org.apache.xerces.internal.,\
 172                    com.sun.org.apache.xpath.internal.,\
 173                    com.sun.org.apache.xalan.internal.extensions.,\
 174                    com.sun.org.apache.xalan.internal.lib.,\
 175                    com.sun.org.apache.xalan.internal.res.,\
 176                    com.sun.org.apache.xalan.internal.templates.,\
 177                    com.sun.org.apache.xalan.internal.xslt.,\
 178                    com.sun.org.apache.xalan.internal.xsltc.cmdline.,\
 179                    com.sun.org.apache.xalan.internal.xsltc.compiler.,\
 180                    com.sun.org.apache.xalan.internal.xsltc.trax.,\
 181                    com.sun.org.apache.xalan.internal.xsltc.util.,\
 182                    com.sun.org.apache.xml.internal.res.,\
 183                    com.sun.org.apache.xml.internal.serializer.utils.,\
 184                    com.sun.org.apache.xml.internal.utils.,\
 185                    com.sun.org.glassfish.
 186 
 187 #
 188 # Determines whether this properties file can be appended to
 189 # or overridden on the command line via -Djava.security.properties
 190 #
 191 security.overridePropertiesFile=true
 192 
 193 #
 194 # Determines the default key and trust manager factory algorithms for 
 195 # the javax.net.ssl package.
 196 #
 197 ssl.KeyManagerFactory.algorithm=SunX509
 198 ssl.TrustManagerFactory.algorithm=PKIX
 199 
 200 #
 201 # The Java-level namelookup cache policy for successful lookups:
 202 #
 203 # any negative value: caching forever
 204 # any positive value: the number of seconds to cache an address for
 205 # zero: do not cache
 206 #
 207 # default value is forever (FOREVER). For security reasons, this
 208 # caching is made forever when a security manager is set. When a security
 209 # manager is not set, the default behavior is to cache for 30 seconds.
 210 #
 211 # NOTE: setting this to anything other than the default value can have
 212 #       serious security implications. Do not set it unless 
 213 #       you are sure you are not exposed to DNS spoofing attack.
 214 #
 215 #networkaddress.cache.ttl=-1 
 216 
 217 # The Java-level namelookup cache policy for failed lookups:
 218 #
 219 # any negative value: cache forever
 220 # any positive value: the number of seconds to cache negative lookup results
 221 # zero: do not cache
 222 #
 223 # In some Microsoft Windows networking environments that employ
 224 # the WINS name service in addition to DNS, name service lookups
 225 # that fail may take a noticeably long time to return (approx. 5 seconds).
 226 # For this reason the default caching policy is to maintain these
 227 # results for 10 seconds. 
 228 #
 229 #
 230 networkaddress.cache.negative.ttl=10
 231 
 232 #
 233 # Properties to configure OCSP for certificate revocation checking
 234 #
 235 
 236 # Enable OCSP 
 237 #
 238 # By default, OCSP is not used for certificate revocation checking.
 239 # This property enables the use of OCSP when set to the value "true".
 240 #
 241 # NOTE: SocketPermission is required to connect to an OCSP responder.
 242 #
 243 # Example,
 244 #   ocsp.enable=true
 245  
 246 #
 247 # Location of the OCSP responder
 248 #
 249 # By default, the location of the OCSP responder is determined implicitly
 250 # from the certificate being validated. This property explicitly specifies
 251 # the location of the OCSP responder. The property is used when the
 252 # Authority Information Access extension (defined in RFC 3280) is absent
 253 # from the certificate or when it requires overriding.
 254 #
 255 # Example,
 256 #   ocsp.responderURL=http://ocsp.example.net:80
 257  
 258 #
 259 # Subject name of the OCSP responder's certificate
 260 #
 261 # By default, the certificate of the OCSP responder is that of the issuer
 262 # of the certificate being validated. This property identifies the certificate
 263 # of the OCSP responder when the default does not apply. Its value is a string 
 264 # distinguished name (defined in RFC 2253) which identifies a certificate in 
 265 # the set of certificates supplied during cert path validation. In cases where 
 266 # the subject name alone is not sufficient to uniquely identify the certificate
 267 # then both the "ocsp.responderCertIssuerName" and
 268 # "ocsp.responderCertSerialNumber" properties must be used instead. When this
 269 # property is set then those two properties are ignored.
 270 #
 271 # Example,
 272 #   ocsp.responderCertSubjectName="CN=OCSP Responder, O=XYZ Corp"
 273 
 274 #
 275 # Issuer name of the OCSP responder's certificate
 276 #
 277 # By default, the certificate of the OCSP responder is that of the issuer
 278 # of the certificate being validated. This property identifies the certificate
 279 # of the OCSP responder when the default does not apply. Its value is a string
 280 # distinguished name (defined in RFC 2253) which identifies a certificate in
 281 # the set of certificates supplied during cert path validation. When this 
 282 # property is set then the "ocsp.responderCertSerialNumber" property must also 
 283 # be set. When the "ocsp.responderCertSubjectName" property is set then this 
 284 # property is ignored.
 285 #
 286 # Example,
 287 #   ocsp.responderCertIssuerName="CN=Enterprise CA, O=XYZ Corp"
 288  
 289 #
 290 # Serial number of the OCSP responder's certificate
 291 #
 292 # By default, the certificate of the OCSP responder is that of the issuer
 293 # of the certificate being validated. This property identifies the certificate
 294 # of the OCSP responder when the default does not apply. Its value is a string
 295 # of hexadecimal digits (colon or space separators may be present) which
 296 # identifies a certificate in the set of certificates supplied during cert path
 297 # validation. When this property is set then the "ocsp.responderCertIssuerName"
 298 # property must also be set. When the "ocsp.responderCertSubjectName" property
 299 # is set then this property is ignored.
 300 #
 301 # Example,
 302 #   ocsp.responderCertSerialNumber=2A:FF:00
 303