Commit abb5f154 authored by Szilárd Pfeiffer's avatar Szilárd Pfeiffer
Browse files

algorithm: Fix name attribute of static DH key exchange protocols

parent 22bce608
Loading
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -81,7 +81,7 @@ class KeyExchange(enum.Enum):
        forward_secret=False
    )
    DH = KeyExchangeParams(  # pylint: disable=invalid-name
        name='Diffie–Hellman Ephemeral (DHE)',
        name='static Diffie–Hellman Ephemeral (DH)',
        forward_secret=False
    )
    DHE = KeyExchangeParams(
@@ -89,7 +89,7 @@ class KeyExchange(enum.Enum):
        forward_secret=True
    )
    ECDH = KeyExchangeParams(
        name='Elliptic-curve Diffie–Hellman (ECDH)',
        name='static Elliptic-curve Diffie–Hellman (ECDH)',
        forward_secret=False
    )
    ECDHE = KeyExchangeParams(