2015-07-02 05:38:43 -05:00
|
|
|
#
|
|
|
|
# Copyright (C) 2015 FreeIPA Contributors see COPYING for license
|
|
|
|
#
|
|
|
|
|
|
|
|
'''
|
|
|
|
This Red Hat OS family base platform module exports default platform
|
|
|
|
related constants for the Red Hat OS family-based systems.
|
|
|
|
'''
|
|
|
|
|
|
|
|
# Fallback to default path definitions
|
2018-04-05 02:21:16 -05:00
|
|
|
from __future__ import absolute_import
|
|
|
|
|
2015-07-02 05:38:43 -05:00
|
|
|
from ipaplatform.base.constants import BaseConstantsNamespace
|
|
|
|
|
|
|
|
|
|
|
|
class RedHatConstantsNamespace(BaseConstantsNamespace):
|
2019-07-02 02:49:59 -05:00
|
|
|
# System-wide crypto policy, but without TripleDES, pre-shared key,
|
|
|
|
# secure remote password, and DSA cert authentication.
|
|
|
|
# see https://fedoraproject.org/wiki/Changes/CryptoPolicy
|
|
|
|
TLS_HIGH_CIPHERS = "PROFILE=SYSTEM:!3DES:!PSK:!SRP:!aDSS"
|
|
|
|
|
2015-07-02 05:38:43 -05:00
|
|
|
|
|
|
|
constants = RedHatConstantsNamespace()
|