# Authors: # Trevor Perrin # Dave Baggett (Arcode Corporation) - cleanup handling of constants # Yngve Pettersen (ported by Paul Sokolovsky) - TLS 1.2 # # See the LICENSE file for legal information regarding use of this file. """Class for setting handshake parameters.""" from .constants import CertificateType from .utils import cryptomath from .utils import cipherfactory from .utils.compat import ecdsaAllCurves, int_types CIPHER_NAMES = ["chacha20-poly1305", "aes256gcm", "aes128gcm", "aes256", "aes128", "3des"] ALL_CIPHER_NAMES = CIPHER_NAMES + ["chacha20-poly1305_draft00", "rc4", "null"] MAC_NAMES = ["sha", "sha256", "sha384", "aead"] # Don't allow "md5" by default. ALL_MAC_NAMES = MAC_NAMES + ["md5"] KEY_EXCHANGE_NAMES = ["rsa", "dhe_rsa", "ecdhe_rsa", "srp_sha", "srp_sha_rsa", "ecdh_anon", "dh_anon"] CIPHER_IMPLEMENTATIONS = ["openssl", "pycrypto", "python"] CERTIFICATE_TYPES = ["x509"] RSA_SIGNATURE_HASHES = ["sha512", "sha384", "sha256", "sha224", "sha1"] ALL_RSA_SIGNATURE_HASHES = RSA_SIGNATURE_HASHES + ["md5"] RSA_SCHEMES = ["pss", "pkcs1"] # while secp521r1 is the most secure, it's also much slower than the others # so place it as the last one CURVE_NAMES = ["x25519", "x448", "secp384r1", "secp256r1", "secp521r1"] ALL_CURVE_NAMES = CURVE_NAMES + ["secp256k1"] if ecdsaAllCurves: ALL_CURVE_NAMES += ["secp224r1", "secp192r1"] ALL_DH_GROUP_NAMES = ["ffdhe2048", "ffdhe3072", "ffdhe4096", "ffdhe6144", "ffdhe8192"] class HandshakeSettings(object): """ This class encapsulates various parameters that can be used with a TLS handshake. :vartype minKeySize: int :ivar minKeySize: The minimum bit length for asymmetric keys. If the other party tries to use SRP, RSA, or Diffie-Hellman parameters smaller than this length, an alert will be signalled. The default is 1023. :vartype maxKeySize: int :ivar maxKeySize: The maximum bit length for asymmetric keys. If the other party tries to use SRP, RSA, or Diffie-Hellman parameters larger than this length, an alert will be signalled. The default is 8193. :vartype cipherNames: list :ivar cipherNames: The allowed ciphers. The allowed values in this list are 'chacha20-poly1305', 'aes256gcm', 'aes128gcm', 'aes256', 'aes128', '3des', 'chacha20-poly1305_draft00', 'null' and 'rc4'. If these settings are used with a client handshake, they determine the order of the ciphersuites offered in the ClientHello message. If these settings are used with a server handshake, the server will choose whichever ciphersuite matches the earliest entry in this list. .. note:: If '3des' is used in this list, but TLS Lite can't find an add-on library that supports 3DES, then '3des' will be silently removed. The default value is list that excludes 'rc4', 'null' and 'chacha20-poly1305_draft00'. :vartype macNames: list :ivar macNames: The allowed MAC algorithms. The allowed values in this list are 'sha384', 'sha256', 'aead', 'sha' and 'md5'. The default value is list that excludes 'md5'. :vartype certificateTypes: list :ivar certificateTypes: The allowed certificate types. The only allowed certificate type is 'x509'. This list is only used with a client handshake. The client will advertise to the server which certificate types are supported, and will check that the server uses one of the appropriate types. :vartype minVersion: tuple :ivar minVersion: The minimum allowed SSL/TLS version. This variable can be set to (3, 0) for SSL 3.0, (3, 1) for TLS 1.0, (3, 2) for TLS 1.1, or (3, 3) for TLS 1.2. If the other party wishes to use a lower version, a protocol_version alert will be signalled. The default is (3, 1). :vartype maxVersion: tuple :ivar maxVersion: The maximum allowed SSL/TLS version. This variable can be set to (3, 0) for SSL 3.0, (3, 1) for TLS 1.0, (3, 2) for TLS 1.1, or (3, 3) for TLS 1.2. If the other party wishes to use a higher version, a protocol_version alert will be signalled. The default is (3, 3). .. warning:: Some servers may (improperly) reject clients which offer support for TLS 1.1 or higher. In this case, try lowering maxVersion to (3, 1). :vartype useExperimentalTackExtension: bool :ivar useExperimentalTackExtension: Whether to enabled TACK support. Note that TACK support is not standardized by IETF and uses a temporary TLS Extension number, so should NOT be used in production software. :vartype sendFallbackSCSV: bool :ivar sendFallbackSCSV: Whether to, as a client, send FALLBACK_SCSV. :vartype rsaSigHashes: list :ivar rsaSigHashes: List of hashes supported (and advertised as such) for TLS 1.2 signatures over Server Key Exchange or Certificate Verify with RSA signature algorithm. The list is sorted from most wanted to least wanted algorithm. The allowed hashes are: "md5", "sha1", "sha224", "sha256", "sha384" and "sha512". The default list does not include md5. :vartype eccCurves: list :ivar eccCurves: List of named curves that are to be supported :vartype useEncryptThenMAC: bool :ivar useEncryptThenMAC: whether to support the encrypt then MAC extension from RFC 7366. True by default. :vartype useExtendedMasterSecret: bool :ivar useExtendedMasterSecret: whether to support the extended master secret calculation from RFC 7627. True by default. :vartype requireExtendedMasterSecret: bool :ivar requireExtendedMasterSecret: whether to require negotiation of extended master secret calculation for successful connection. Requires useExtendedMasterSecret to be set to true. False by default. :vartype defaultCurve: str :ivar defaultCurve: curve that will be used by server in case the client did not advertise support for any curves. It does not have to be the first curve for eccCurves and may be distinct from curves from that list. """ def __init__(self): self.minKeySize = 1023 self.maxKeySize = 8193 self.cipherNames = list(CIPHER_NAMES) self.macNames = list(MAC_NAMES) self.keyExchangeNames = list(KEY_EXCHANGE_NAMES) self.cipherImplementations = list(CIPHER_IMPLEMENTATIONS) self.certificateTypes = list(CERTIFICATE_TYPES) self.minVersion = (3, 1) self.maxVersion = (3, 3) self.useExperimentalTackExtension = False self.sendFallbackSCSV = False self.useEncryptThenMAC = True self.rsaSigHashes = list(RSA_SIGNATURE_HASHES) self.rsaSchemes = list(RSA_SCHEMES) self.eccCurves = list(CURVE_NAMES) self.usePaddingExtension = True self.useExtendedMasterSecret = True self.requireExtendedMasterSecret = False self.dhParams = None self.dhGroups = list(ALL_DH_GROUP_NAMES) self.defaultCurve = "secp256r1" @staticmethod def _sanityCheckKeySizes(other): """Check if key size limits are sane""" if other.minKeySize < 512: raise ValueError("minKeySize too small") if other.minKeySize > 16384: raise ValueError("minKeySize too large") if other.maxKeySize < 512: raise ValueError("maxKeySize too small") if other.maxKeySize > 16384: raise ValueError("maxKeySize too large") if other.maxKeySize < other.minKeySize: raise ValueError("maxKeySize smaller than minKeySize") @staticmethod def _sanityCheckPrimitivesNames(other): """Check if specified cryptographic primitive names are known""" unknownCiphers = [val for val in other.cipherNames \ if val not in ALL_CIPHER_NAMES] if unknownCiphers: raise ValueError("Unknown cipher name: %s" % unknownCiphers) unknownMacs = [val for val in other.macNames \ if val not in ALL_MAC_NAMES] if unknownMacs: raise ValueError("Unknown MAC name: %s" % unknownMacs) unknownKex = [val for val in other.keyExchangeNames \ if val not in KEY_EXCHANGE_NAMES] if unknownKex: raise ValueError("Unknown key exchange name: %s" % unknownKex) unknownImpl = [val for val in other.cipherImplementations \ if val not in CIPHER_IMPLEMENTATIONS] if unknownImpl: raise ValueError("Unknown cipher implementation: %s" % \ unknownImpl) unknownType = [val for val in other.certificateTypes \ if val not in CERTIFICATE_TYPES] if unknownType: raise ValueError("Unknown certificate type: %s" % unknownType) unknownCurve = [val for val in other.eccCurves \ if val not in ALL_CURVE_NAMES] if unknownCurve: raise ValueError("Unknown ECC Curve name: {0}".format(unknownCurve)) if other.defaultCurve not in ALL_CURVE_NAMES: raise ValueError("Unknown default ECC Curve name: {0}" .format(other.defaultCurve)) unknownSigHash = [val for val in other.rsaSigHashes \ if val not in ALL_RSA_SIGNATURE_HASHES] if unknownSigHash: raise ValueError("Unknown RSA signature hash: '{0}'".\ format(unknownSigHash)) unknownRSAPad = [val for val in other.rsaSchemes if val not in RSA_SCHEMES] if unknownRSAPad: raise ValueError("Unknown RSA padding mode: '{0}'".\ format(unknownRSAPad)) unknownDHGroup = [val for val in other.dhGroups if val not in ALL_DH_GROUP_NAMES] if unknownDHGroup: raise ValueError("Unknown FFDHE group name: '{0}'" .format(unknownDHGroup)) @staticmethod def _sanityCheckProtocolVersions(other): """Check if set protocol version are sane""" if other.minVersion > other.maxVersion: raise ValueError("Versions set incorrectly") if other.minVersion not in ((3, 0), (3, 1), (3, 2), (3, 3)): raise ValueError("minVersion set incorrectly") if other.maxVersion not in ((3, 0), (3, 1), (3, 2), (3, 3)): raise ValueError("maxVersion set incorrectly") @staticmethod def _sanityCheckExtensions(other): """Check if set extension settings are sane""" if other.useEncryptThenMAC not in (True, False): raise ValueError("useEncryptThenMAC can only be True or False") if other.useExtendedMasterSecret not in (True, False): raise ValueError("useExtendedMasterSecret must be True or False") if other.requireExtendedMasterSecret not in (True, False): raise ValueError("requireExtendedMasterSecret must be True " "or False") if other.requireExtendedMasterSecret and \ not other.useExtendedMasterSecret: raise ValueError("requireExtendedMasterSecret requires " "useExtendedMasterSecret") if other.usePaddingExtension not in (True, False): raise ValueError("usePaddingExtension must be True or False") def validate(self): """ Validate the settings, filter out unsupported ciphersuites and return a copy of object. Does not modify the original object. :rtype: HandshakeSettings :returns: a self-consistent copy of settings :raises ValueError: when settings are invalid, insecure or unsupported. """ other = HandshakeSettings() other.minKeySize = self.minKeySize other.maxKeySize = self.maxKeySize other.cipherNames = self.cipherNames other.macNames = self.macNames other.keyExchangeNames = self.keyExchangeNames other.cipherImplementations = self.cipherImplementations other.certificateTypes = self.certificateTypes other.minVersion = self.minVersion other.maxVersion = self.maxVersion other.sendFallbackSCSV = self.sendFallbackSCSV other.useEncryptThenMAC = self.useEncryptThenMAC other.usePaddingExtension = self.usePaddingExtension other.rsaSigHashes = self.rsaSigHashes other.rsaSchemes = self.rsaSchemes other.eccCurves = self.eccCurves other.useExtendedMasterSecret = self.useExtendedMasterSecret other.requireExtendedMasterSecret = self.requireExtendedMasterSecret other.dhParams = self.dhParams other.dhGroups = self.dhGroups other.defaultCurve = self.defaultCurve if not cipherfactory.tripleDESPresent: other.cipherNames = [i for i in self.cipherNames if i != "3des"] if len(other.cipherNames) == 0: raise ValueError("No supported ciphers") if len(other.certificateTypes) == 0: raise ValueError("No supported certificate types") if not cryptomath.m2cryptoLoaded: other.cipherImplementations = \ [e for e in other.cipherImplementations if e != "openssl"] if not cryptomath.pycryptoLoaded: other.cipherImplementations = \ [e for e in other.cipherImplementations if e != "pycrypto"] if len(other.cipherImplementations) == 0: raise ValueError("No supported cipher implementations") self._sanityCheckKeySizes(other) self._sanityCheckPrimitivesNames(other) self._sanityCheckProtocolVersions(other) self._sanityCheckExtensions(other) if other.maxVersion < (3,3): # No sha-2 and AEAD pre TLS 1.2 other.macNames = [e for e in self.macNames if \ e == "sha" or e == "md5"] if len(other.rsaSigHashes) == 0 and other.maxVersion >= (3, 3): raise ValueError("TLS 1.2 requires signature algorithms to be set") if other.dhParams and (len(other.dhParams) != 2 or not isinstance(other.dhParams[0], int_types) or not isinstance(other.dhParams[1], int_types)): raise ValueError("DH parameters need to be a tuple of integers") return other def getCertificateTypes(self): """Get list of certificate types as IDs""" ret = [] for ct in self.certificateTypes: if ct == "x509": ret.append(CertificateType.x509) else: raise AssertionError() return ret