blob: afe07617e451efb18aa5987b24be786d4ab3a587 [file] [log] [blame]
duke6e45e102007-12-01 00:00:00 +00001#
2# This is the "master security properties file".
3#
mullan68000592012-07-03 14:56:58 -04004# An alternate java.security properties file may be specified
5# from the command line via the system property
6#
7# -Djava.security.properties=<URL>
8#
9# This properties file appends to the master security properties file.
10# If both properties files specify values for the same key, the value
11# from the command-line properties file is selected, as it is the last
12# one loaded.
13#
14# Also, if you specify
15#
16# -Djava.security.properties==<URL> (2 equals),
17#
18# then that properties file completely overrides the master security
19# properties file.
20#
21# To disable the ability to specify an additional properties file from
22# the command line, set the key security.overridePropertiesFile
23# to false in the master security properties file. It is set to true
24# by default.
25
duke6e45e102007-12-01 00:00:00 +000026# In this file, various security properties are set for use by
27# java.security classes. This is where users can statically register
28# Cryptography Package Providers ("providers" for short). The term
29# "provider" refers to a package or set of packages that supply a
30# concrete implementation of a subset of the cryptography aspects of
31# the Java Security API. A provider may, for example, implement one or
32# more digital signature algorithms or message digest algorithms.
33#
34# Each provider must implement a subclass of the Provider class.
35# To register a provider in this master security properties file,
36# specify the Provider subclass name and priority in the format
37#
38# security.provider.<n>=<className>
39#
40# This declares a provider, and specifies its preference
41# order n. The preference order is the order in which providers are
42# searched for requested algorithms (when no specific provider is
43# requested). The order is 1-based; 1 is the most preferred, followed
44# by 2, and so on.
45#
46# <className> must specify the subclass of the Provider class whose
47# constructor sets the values of various properties that are required
48# for the Java Security API to look up the algorithms or other
49# facilities implemented by the provider.
50#
51# There must be at least one provider specification in java.security.
52# There is a default provider that comes standard with the JDK. It
53# is called the "SUN" provider, and its Provider subclass
54# named Sun appears in the sun.security.provider package. Thus, the
55# "SUN" provider is registered via the following:
56#
57# security.provider.1=sun.security.provider.Sun
58#
59# (The number 1 is used for the default provider.)
60#
61# Note: Providers can be dynamically registered instead by calls to
62# either the addProvider or insertProviderAt method in the Security
63# class.
64
65#
66# List of providers and their preference orders (see above):
67#
68security.provider.1=sun.security.provider.Sun
69security.provider.2=sun.security.rsa.SunRsaSign
vinnieed355ab2009-08-11 16:52:26 +010070security.provider.3=sun.security.ec.SunEC
71security.provider.4=com.sun.net.ssl.internal.ssl.Provider
72security.provider.5=com.sun.crypto.provider.SunJCE
73security.provider.6=sun.security.jgss.SunProvider
74security.provider.7=com.sun.security.sasl.Provider
75security.provider.8=org.jcp.xml.dsig.internal.dom.XMLDSigRI
76security.provider.9=sun.security.smartcardio.SunPCSC
duke6e45e102007-12-01 00:00:00 +000077
78#
79# Select the source of seed data for SecureRandom. By default an
weijun0f0fb6a2009-12-24 13:56:19 +080080# attempt is made to use the entropy gathering device specified by
duke6e45e102007-12-01 00:00:00 +000081# the securerandom.source property. If an exception occurs when
weijun0f0fb6a2009-12-24 13:56:19 +080082# accessing the URL then the traditional system/thread activity
83# algorithm is used.
duke6e45e102007-12-01 00:00:00 +000084#
85# On Solaris and Linux systems, if file:/dev/urandom is specified and it
86# exists, a special SecureRandom implementation is activated by default.
87# This "NativePRNG" reads random bytes directly from /dev/urandom.
88#
89# On Windows systems, the URLs file:/dev/random and file:/dev/urandom
90# enables use of the Microsoft CryptoAPI seed functionality.
91#
92securerandom.source=file:/dev/urandom
93#
94# The entropy gathering device is described as a URL and can also
95# be specified with the system property "java.security.egd". For example,
96# -Djava.security.egd=file:/dev/urandom
weijun0f0fb6a2009-12-24 13:56:19 +080097# Specifying this system property will override the securerandom.source
duke6e45e102007-12-01 00:00:00 +000098# setting.
99
100#
101# Class to instantiate as the javax.security.auth.login.Configuration
102# provider.
103#
104login.configuration.provider=com.sun.security.auth.login.ConfigFile
105
106#
107# Default login configuration file
108#
109#login.config.url.1=file:${user.home}/.java.login.config
110
111#
112# Class to instantiate as the system Policy. This is the name of the class
113# that will be used as the Policy object.
114#
115policy.provider=sun.security.provider.PolicyFile
116
117# The default is to have a single system-wide policy file,
118# and a policy file in the user's home directory.
119policy.url.1=file:${java.home}/lib/security/java.policy
120policy.url.2=file:${user.home}/.java.policy
121
122# whether or not we expand properties in the policy file
123# if this is set to false, properties (${...}) will not be expanded in policy
124# files.
125policy.expandProperties=true
126
127# whether or not we allow an extra policy to be passed on the command line
128# with -Djava.security.policy=somefile. Comment out this line to disable
129# this feature.
130policy.allowSystemProperty=true
131
132# whether or not we look into the IdentityScope for trusted Identities
133# when encountering a 1.1 signed JAR file. If the identity is found
134# and is trusted, we grant it AllPermission.
135policy.ignoreIdentityScope=false
136
137#
138# Default keystore type.
139#
140keystore.type=jks
141
142#
duke6e45e102007-12-01 00:00:00 +0000143# List of comma-separated packages that start with or equal this string
144# will cause a security exception to be thrown when
145# passed to checkPackageAccess unless the
146# corresponding RuntimePermission ("accessClassInPackage."+package) has
147# been granted.
ewendeli69845692013-01-28 11:07:07 +0100148package.access=sun.,\
149 com.sun.xml.internal.bind.,\
150 com.sun.xml.internal.org.jvnet.staxex.,\
joehwf5a92592013-02-18 13:02:09 -0800151 com.sun.xml.internal.stream.,\
ewendeli69845692013-01-28 11:07:07 +0100152 com.sun.xml.internal.ws.,\
153 com.sun.imageio.,\
154 com.sun.istack.internal.,\
dfuchs0fe8bdd2013-01-30 11:33:51 +0100155 com.sun.jmx.,\
mchung1cdf5492013-01-28 15:53:29 -0800156 com.sun.proxy.,\
joehwf5a92592013-02-18 13:02:09 -0800157 com.sun.org.apache.bcel.internal.,\
158 com.sun.org.apache.regexp.internal.,\
159 com.sun.org.apache.xerces.internal.,\
160 com.sun.org.apache.xpath.internal.,\
161 com.sun.org.apache.xalan.internal.extensions.,\
162 com.sun.org.apache.xalan.internal.lib.,\
163 com.sun.org.apache.xalan.internal.res.,\
164 com.sun.org.apache.xalan.internal.templates.,\
ewendeli69845692013-01-28 11:07:07 +0100165 com.sun.org.apache.xalan.internal.utils.,\
joehwf5a92592013-02-18 13:02:09 -0800166 com.sun.org.apache.xalan.internal.xslt.,\
167 com.sun.org.apache.xalan.internal.xsltc.cmdline.,\
168 com.sun.org.apache.xalan.internal.xsltc.compiler.,\
169 com.sun.org.apache.xalan.internal.xsltc.trax.,\
170 com.sun.org.apache.xalan.internal.xsltc.util.,\
171 com.sun.org.apache.xml.internal.res.,\
172 com.sun.org.apache.xml.internal.serializer.utils.,\
173 com.sun.org.apache.xml.internal.utils.,\
mullanf180f522013-03-27 10:37:46 +0000174 com.sun.org.glassfish.,\
ewendeli69845692013-01-28 11:07:07 +0100175 jdk.internal.
duke6e45e102007-12-01 00:00:00 +0000176
177#
178# List of comma-separated packages that start with or equal this string
179# will cause a security exception to be thrown when
180# passed to checkPackageDefinition unless the
181# corresponding RuntimePermission ("defineClassInPackage."+package) has
182# been granted.
183#
mullanee9229d2012-02-22 15:38:24 -0500184# by default, none of the class loaders supplied with the JDK call
185# checkPackageDefinition.
duke6e45e102007-12-01 00:00:00 +0000186#
ewendeli69845692013-01-28 11:07:07 +0100187package.definition=sun.,\
188 com.sun.xml.internal.bind.,\
189 com.sun.xml.internal.org.jvnet.staxex.,\
joehwf5a92592013-02-18 13:02:09 -0800190 com.sun.xml.internal.stream.,\
ewendeli69845692013-01-28 11:07:07 +0100191 com.sun.xml.internal.ws.,\
192 com.sun.imageio.,\
193 com.sun.istack.internal.,\
dfuchs0fe8bdd2013-01-30 11:33:51 +0100194 com.sun.jmx.,\
mchung1cdf5492013-01-28 15:53:29 -0800195 com.sun.proxy.,\
joehwf5a92592013-02-18 13:02:09 -0800196 com.sun.org.apache.bcel.internal.,\
197 com.sun.org.apache.regexp.internal.,\
198 com.sun.org.apache.xerces.internal.,\
199 com.sun.org.apache.xpath.internal.,\
200 com.sun.org.apache.xalan.internal.extensions.,\
201 com.sun.org.apache.xalan.internal.lib.,\
202 com.sun.org.apache.xalan.internal.res.,\
203 com.sun.org.apache.xalan.internal.templates.,\
ewendeli69845692013-01-28 11:07:07 +0100204 com.sun.org.apache.xalan.internal.utils.,\
joehwf5a92592013-02-18 13:02:09 -0800205 com.sun.org.apache.xalan.internal.xslt.,\
206 com.sun.org.apache.xalan.internal.xsltc.cmdline.,\
207 com.sun.org.apache.xalan.internal.xsltc.compiler.,\
208 com.sun.org.apache.xalan.internal.xsltc.trax.,\
209 com.sun.org.apache.xalan.internal.xsltc.util.,\
210 com.sun.org.apache.xml.internal.res.,\
211 com.sun.org.apache.xml.internal.serializer.utils.,\
212 com.sun.org.apache.xml.internal.utils.,\
mullanf180f522013-03-27 10:37:46 +0000213 com.sun.org.glassfish.,\
ewendeli69845692013-01-28 11:07:07 +0100214 jdk.internal.
duke6e45e102007-12-01 00:00:00 +0000215
216#
217# Determines whether this properties file can be appended to
218# or overridden on the command line via -Djava.security.properties
219#
220security.overridePropertiesFile=true
221
222#
weijun0f0fb6a2009-12-24 13:56:19 +0800223# Determines the default key and trust manager factory algorithms for
duke6e45e102007-12-01 00:00:00 +0000224# the javax.net.ssl package.
225#
226ssl.KeyManagerFactory.algorithm=SunX509
227ssl.TrustManagerFactory.algorithm=PKIX
228
229#
230# The Java-level namelookup cache policy for successful lookups:
231#
232# any negative value: caching forever
233# any positive value: the number of seconds to cache an address for
234# zero: do not cache
235#
236# default value is forever (FOREVER). For security reasons, this
237# caching is made forever when a security manager is set. When a security
238# manager is not set, the default behavior in this implementation
239# is to cache for 30 seconds.
240#
241# NOTE: setting this to anything other than the default value can have
weijun0f0fb6a2009-12-24 13:56:19 +0800242# serious security implications. Do not set it unless
duke6e45e102007-12-01 00:00:00 +0000243# you are sure you are not exposed to DNS spoofing attack.
244#
weijun0f0fb6a2009-12-24 13:56:19 +0800245#networkaddress.cache.ttl=-1
duke6e45e102007-12-01 00:00:00 +0000246
247# The Java-level namelookup cache policy for failed lookups:
248#
249# any negative value: cache forever
250# any positive value: the number of seconds to cache negative lookup results
251# zero: do not cache
252#
253# In some Microsoft Windows networking environments that employ
254# the WINS name service in addition to DNS, name service lookups
255# that fail may take a noticeably long time to return (approx. 5 seconds).
256# For this reason the default caching policy is to maintain these
weijun0f0fb6a2009-12-24 13:56:19 +0800257# results for 10 seconds.
duke6e45e102007-12-01 00:00:00 +0000258#
259#
260networkaddress.cache.negative.ttl=10
261
262#
263# Properties to configure OCSP for certificate revocation checking
264#
265
weijun0f0fb6a2009-12-24 13:56:19 +0800266# Enable OCSP
duke6e45e102007-12-01 00:00:00 +0000267#
268# By default, OCSP is not used for certificate revocation checking.
269# This property enables the use of OCSP when set to the value "true".
270#
271# NOTE: SocketPermission is required to connect to an OCSP responder.
272#
273# Example,
274# ocsp.enable=true
weijun0f0fb6a2009-12-24 13:56:19 +0800275
duke6e45e102007-12-01 00:00:00 +0000276#
277# Location of the OCSP responder
278#
279# By default, the location of the OCSP responder is determined implicitly
280# from the certificate being validated. This property explicitly specifies
281# the location of the OCSP responder. The property is used when the
282# Authority Information Access extension (defined in RFC 3280) is absent
283# from the certificate or when it requires overriding.
284#
285# Example,
286# ocsp.responderURL=http://ocsp.example.net:80
weijun0f0fb6a2009-12-24 13:56:19 +0800287
duke6e45e102007-12-01 00:00:00 +0000288#
289# Subject name of the OCSP responder's certificate
290#
291# By default, the certificate of the OCSP responder is that of the issuer
292# of the certificate being validated. This property identifies the certificate
weijun0f0fb6a2009-12-24 13:56:19 +0800293# of the OCSP responder when the default does not apply. Its value is a string
294# distinguished name (defined in RFC 2253) which identifies a certificate in
295# the set of certificates supplied during cert path validation. In cases where
duke6e45e102007-12-01 00:00:00 +0000296# the subject name alone is not sufficient to uniquely identify the certificate
297# then both the "ocsp.responderCertIssuerName" and
298# "ocsp.responderCertSerialNumber" properties must be used instead. When this
299# property is set then those two properties are ignored.
300#
301# Example,
302# ocsp.responderCertSubjectName="CN=OCSP Responder, O=XYZ Corp"
303
304#
305# Issuer name of the OCSP responder's certificate
306#
307# By default, the certificate of the OCSP responder is that of the issuer
308# of the certificate being validated. This property identifies the certificate
309# of the OCSP responder when the default does not apply. Its value is a string
310# distinguished name (defined in RFC 2253) which identifies a certificate in
weijun0f0fb6a2009-12-24 13:56:19 +0800311# the set of certificates supplied during cert path validation. When this
312# property is set then the "ocsp.responderCertSerialNumber" property must also
313# be set. When the "ocsp.responderCertSubjectName" property is set then this
duke6e45e102007-12-01 00:00:00 +0000314# property is ignored.
315#
316# Example,
317# ocsp.responderCertIssuerName="CN=Enterprise CA, O=XYZ Corp"
weijun0f0fb6a2009-12-24 13:56:19 +0800318
duke6e45e102007-12-01 00:00:00 +0000319#
320# Serial number of the OCSP responder's certificate
321#
322# By default, the certificate of the OCSP responder is that of the issuer
323# of the certificate being validated. This property identifies the certificate
324# of the OCSP responder when the default does not apply. Its value is a string
325# of hexadecimal digits (colon or space separators may be present) which
326# identifies a certificate in the set of certificates supplied during cert path
327# validation. When this property is set then the "ocsp.responderCertIssuerName"
328# property must also be set. When the "ocsp.responderCertSubjectName" property
329# is set then this property is ignored.
330#
331# Example,
332# ocsp.responderCertSerialNumber=2A:FF:00
weijun0f0fb6a2009-12-24 13:56:19 +0800333
334#
335# Policy for failed Kerberos KDC lookups:
336#
337# When a KDC is unavailable (network error, service failure, etc), it is
338# put inside a blacklist and accessed less often for future requests. The
339# value (case-insensitive) for this policy can be:
340#
341# tryLast
342# KDCs in the blacklist are always tried after those not on the list.
343#
344# tryLess[:max_retries,timeout]
345# KDCs in the blacklist are still tried by their order in the configuration,
346# but with smaller max_retries and timeout values. max_retries and timeout
347# are optional numerical parameters (default 1 and 5000, which means once
348# and 5 seconds). Please notes that if any of the values defined here is
349# more than what is defined in krb5.conf, it will be ignored.
350#
351# Whenever a KDC is detected as available, it is removed from the blacklist.
352# The blacklist is reset when krb5.conf is reloaded. You can add
353# refreshKrb5Config=true to a JAAS configuration file so that krb5.conf is
354# reloaded whenever a JAAS authentication is attempted.
355#
356# Example,
357# krb5.kdc.bad.policy = tryLast
358# krb5.kdc.bad.policy = tryLess:2,2000
359krb5.kdc.bad.policy = tryLast
360
xuelei42dd6452010-11-01 07:57:46 -0700361# Algorithm restrictions for certification path (CertPath) processing
362#
363# In some environments, certain algorithms or key lengths may be undesirable
364# for certification path building and validation. For example, "MD2" is
365# generally no longer considered to be a secure hash algorithm. This section
366# describes the mechanism for disabling algorithms based on algorithm name
367# and/or key length. This includes algorithms used in certificates, as well
368# as revocation information such as CRLs and signed OCSP Responses.
369#
370# The syntax of the disabled algorithm string is described as this Java
371# BNF-style:
372# DisabledAlgorithms:
373# " DisabledAlgorithm { , DisabledAlgorithm } "
374#
375# DisabledAlgorithm:
376# AlgorithmName [Constraint]
377#
378# AlgorithmName:
379# (see below)
380#
381# Constraint:
382# KeySizeConstraint
383#
384# KeySizeConstraint:
385# keySize Operator DecimalInteger
386#
387# Operator:
388# <= | < | == | != | >= | >
389#
390# DecimalInteger:
391# DecimalDigits
392#
393# DecimalDigits:
394# DecimalDigit {DecimalDigit}
395#
396# DecimalDigit: one of
397# 1 2 3 4 5 6 7 8 9 0
398#
399# The "AlgorithmName" is the standard algorithm name of the disabled
400# algorithm. See "Java Cryptography Architecture Standard Algorithm Name
401# Documentation" for information about Standard Algorithm Names. Matching
402# is performed using a case-insensitive sub-element matching rule. (For
403# example, in "SHA1withECDSA" the sub-elements are "SHA1" for hashing and
404# "ECDSA" for signatures.) If the assertion "AlgorithmName" is a
405# sub-element of the certificate algorithm name, the algorithm will be
406# rejected during certification path building and validation. For example,
407# the assertion algorithm name "DSA" will disable all certificate algorithms
408# that rely on DSA, such as NONEwithDSA, SHA1withDSA. However, the assertion
409# will not disable algorithms related to "ECDSA".
410#
411# A "Constraint" provides further guidance for the algorithm being specified.
412# The "KeySizeConstraint" requires a key of a valid size range if the
413# "AlgorithmName" is of a key algorithm. The "DecimalInteger" indicates the
414# key size specified in number of bits. For example, "RSA keySize <= 1024"
415# indicates that any RSA key with key size less than or equal to 1024 bits
416# should be disabled, and "RSA keySize < 1024, RSA keySize > 2048" indicates
417# that any RSA key with key size less than 1024 or greater than 2048 should
418# be disabled. Note that the "KeySizeConstraint" only makes sense to key
419# algorithms.
420#
421# Note: This property is currently used by Oracle's PKIX implementation. It
422# is not guaranteed to be examined and used by other implementations.
423#
424# Example:
425# jdk.certpath.disabledAlgorithms=MD2, DSA, RSA keySize < 2048
426#
427#
xuelei7b2dfe72012-12-28 00:48:12 -0800428jdk.certpath.disabledAlgorithms=MD2, RSA keySize < 1024
xuelei42dd6452010-11-01 07:57:46 -0700429
430# Algorithm restrictions for Secure Socket Layer/Transport Layer Security
431# (SSL/TLS) processing
432#
433# In some environments, certain algorithms or key lengths may be undesirable
434# when using SSL/TLS. This section describes the mechanism for disabling
435# algorithms during SSL/TLS security parameters negotiation, including cipher
436# suites selection, peer authentication and key exchange mechanisms.
437#
438# For PKI-based peer authentication and key exchange mechanisms, this list
439# of disabled algorithms will also be checked during certification path
440# building and validation, including algorithms used in certificates, as
441# well as revocation information such as CRLs and signed OCSP Responses.
442# This is in addition to the jdk.certpath.disabledAlgorithms property above.
443#
444# See the specification of "jdk.certpath.disabledAlgorithms" for the
445# syntax of the disabled algorithm string.
446#
447# Note: This property is currently used by Oracle's JSSE implementation.
448# It is not guaranteed to be examined and used by other implementations.
449#
450# Example:
451# jdk.tls.disabledAlgorithms=MD5, SHA1, DSA, RSA keySize < 2048
452