< prev index next >

src/share/lib/security/java.security-linux

Print this page
rev 13446 : 8207258: Distrust TLS server certificates anchored by Symantec Root CAs


 964 # It is not guaranteed to be examined and used by other implementations.
 965 #
 966 #com.sun.CORBA.ORBIorTypeCheckRegistryFilter=binary_class_name;binary_class_name
 967 
 968 #
 969 # JCEKS Encrypted Key Serial Filter
 970 #
 971 # This filter, if configured, is used by the JCEKS KeyStore during the
 972 # deserialization of the encrypted Key object stored inside a key entry.
 973 # If not configured or the filter result is UNDECIDED (i.e. none of the patterns
 974 # matches), the filter configured by jdk.serialFilter will be consulted.
 975 #
 976 # If the system property jceks.key.serialFilter is also specified, it supersedes
 977 # the security property value defined here.
 978 #
 979 # The filter pattern uses the same format as jdk.serialFilter. The default
 980 # pattern allows java.lang.Enum, java.security.KeyRep, java.security.KeyRep$Type,
 981 # and javax.crypto.spec.SecretKeySpec and rejects all the others.
 982 jceks.key.serialFilter = java.lang.Enum;java.security.KeyRep;\
 983   java.security.KeyRep$Type;javax.crypto.spec.SecretKeySpec;!*

























 964 # It is not guaranteed to be examined and used by other implementations.
 965 #
 966 #com.sun.CORBA.ORBIorTypeCheckRegistryFilter=binary_class_name;binary_class_name
 967 
 968 #
 969 # JCEKS Encrypted Key Serial Filter
 970 #
 971 # This filter, if configured, is used by the JCEKS KeyStore during the
 972 # deserialization of the encrypted Key object stored inside a key entry.
 973 # If not configured or the filter result is UNDECIDED (i.e. none of the patterns
 974 # matches), the filter configured by jdk.serialFilter will be consulted.
 975 #
 976 # If the system property jceks.key.serialFilter is also specified, it supersedes
 977 # the security property value defined here.
 978 #
 979 # The filter pattern uses the same format as jdk.serialFilter. The default
 980 # pattern allows java.lang.Enum, java.security.KeyRep, java.security.KeyRep$Type,
 981 # and javax.crypto.spec.SecretKeySpec and rejects all the others.
 982 jceks.key.serialFilter = java.lang.Enum;java.security.KeyRep;\
 983   java.security.KeyRep$Type;javax.crypto.spec.SecretKeySpec;!*
 984 
 985 #
 986 # Policies for distrusting Certificate Authorities (CAs).
 987 #
 988 # This is a comma separated value of one or more case-sensitive strings, each
 989 # of which represents a policy for determining if a CA should be distrusted.
 990 # The supported values are:
 991 #
 992 # SYMANTEC_TLS : Distrust TLS Server certificates anchored by
 993 #                a Symantec root CA and issued after April 16, 2019.
 994 #
 995 # Leading and trailing whitespace surrounding each value are ignored.
 996 # Unknown values are ignored. If the property is commented out or set to the
 997 # empty String, no policies are enforced.
 998 #
 999 # Note: This property is currently used by the JDK Reference implementation.
1000 # It is not guaranteed to be supported by other SE implementations. Also, this
1001 # property does not override other security properties which can restrict
1002 # certificates such as jdk.tls.disabledAlgorithms or
1003 # jdk.certpath.disabledAlgorithms; those restrictions are still enforced even
1004 # if this property is not enabled.
1005 #
1006 jdk.security.caDistrustPolicies=SYMANTEC_TLS
< prev index next >