// Copyright 2014 Citra Emulator Project // Licensed under GPLv2 or any later version // Refer to the license.txt file included. #pragma once #include #include "core/hle/service/service.h" namespace Core { class System; } namespace Service::SSL { class SSL_C final : public ServiceFramework { public: SSL_C(); private: void Initialize(Kernel::HLERequestContext& ctx); void GenerateRandomData(Kernel::HLERequestContext& ctx); SERVICE_SERIALIZATION_SIMPLE }; void InstallInterfaces(Core::System& system); void GenerateRandomData(std::vector& out); } // namespace Service::SSL BOOST_CLASS_EXPORT_KEY(Service::SSL::SSL_C)