/* * Deskflow -- mouse and keyboard sharing utility * SPDX-FileCopyrightText: (C) 2024 Symless Ltd. * SPDX-License-Identifier: GPL-2.0-only WITH LicenseRef-OpenSSL-Exception */ #pragma once #include "TlsCertificate.h" #include namespace deskflow::gui { class TlsUtility : public QObject { Q_OBJECT public: explicit TlsUtility(QObject *parent = nullptr); bool generateCertificate() const; bool persistCertificate() const; /** * @brief Combines the availability and the enabled status of TLS. * * @return Given that the app setting for TLS is enabled: * If licensing is enabled, it checks whether the product has TLS * available, and if licensing is not enabled, true is returned. */ bool isEnabled() const; private: TlsCertificate m_certificate; }; } // namespace deskflow::gui