Files
python-sagemcom-api-master/sagemcom_api/enums.py
2023-06-27 09:24:33 +02:00

11 lines
192 B
Python

"""Enums for the Sagemcom F@st client."""
from enum import Enum
class EncryptionMethod(Enum):
"""Encryption method defining the password hash."""
MD5 = "MD5"
SHA512 = "SHA512"