sun.security.util.DisabledAlgorithmConstraints Java Examples

The following examples show how to use sun.security.util.DisabledAlgorithmConstraints. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: SSLAlgorithmConstraints.java    From openjdk-8-source with GNU General Public License v2.0 4 votes vote down vote up
TLSDisabledAlgConstraints() {
    super(DisabledAlgorithmConstraints.PROPERTY_TLS_DISABLED_ALGS);
}
 
Example #2
Source File: SSLAlgorithmConstraints.java    From openjdk-8-source with GNU General Public License v2.0 4 votes vote down vote up
X509DisabledAlgConstraints() {
    super(DisabledAlgorithmConstraints.PROPERTY_CERTPATH_DISABLED_ALGS);
}
 
Example #3
Source File: SSLAlgorithmConstraints.java    From openjdk-8 with GNU General Public License v2.0 4 votes vote down vote up
TLSDisabledAlgConstraints() {
    super(DisabledAlgorithmConstraints.PROPERTY_TLS_DISABLED_ALGS);
}
 
Example #4
Source File: SSLAlgorithmConstraints.java    From openjdk-8 with GNU General Public License v2.0 4 votes vote down vote up
X509DisabledAlgConstraints() {
    super(DisabledAlgorithmConstraints.PROPERTY_CERTPATH_DISABLED_ALGS);
}
 
Example #5
Source File: SSLAlgorithmConstraints.java    From jdk8u-jdk with GNU General Public License v2.0 4 votes vote down vote up
TLSDisabledAlgConstraints() {
    super(DisabledAlgorithmConstraints.PROPERTY_TLS_DISABLED_ALGS);
}
 
Example #6
Source File: SSLAlgorithmConstraints.java    From jdk8u-jdk with GNU General Public License v2.0 4 votes vote down vote up
X509DisabledAlgConstraints() {
    super(DisabledAlgorithmConstraints.PROPERTY_CERTPATH_DISABLED_ALGS);
}
 
Example #7
Source File: SSLAlgorithmConstraints.java    From jdk8u-dev-jdk with GNU General Public License v2.0 4 votes vote down vote up
TLSDisabledAlgConstraints() {
    super(DisabledAlgorithmConstraints.PROPERTY_TLS_DISABLED_ALGS);
}
 
Example #8
Source File: SSLAlgorithmConstraints.java    From jdk8u-dev-jdk with GNU General Public License v2.0 4 votes vote down vote up
X509DisabledAlgConstraints() {
    super(DisabledAlgorithmConstraints.PROPERTY_CERTPATH_DISABLED_ALGS);
}