Files
eden/src/core/hle/service/spl/csrng.cpp
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
512 B
C++
Raw Normal View History

// SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
2018-03-22 09:54:16 +03:00
#include "core/hle/service/spl/csrng.h"
namespace Service::SPL {
2018-03-22 09:54:16 +03:00
CSRNG::CSRNG(Core::System& system_, std::shared_ptr<Module> module_)
: Interface(system_, std::move(module_), "csrng") {
2018-03-22 09:54:16 +03:00
static const FunctionInfo functions[] = {
2021-06-15 02:36:52 -04:00
{0, &CSRNG::GenerateRandomBytes, "GenerateRandomBytes"},
2018-03-22 09:54:16 +03:00
};
RegisterHandlers(functions);
}
CSRNG::~CSRNG() = default;
} // namespace Service::SPL