rpcsx/rpcs3/Emu/Cell/lv2/sys_crypto_engine.h

11 lines
277 B
C
Raw Normal View History

2020-02-07 10:31:33 +01:00
#pragma once
#include "Emu/Memory/vm_ptr.h"
2020-12-12 12:24:01 +01:00
#include "Emu/Cell/ErrorCodes.h"
2020-02-07 10:31:33 +01:00
// SysCalls
error_code sys_crypto_engine_create(vm::ptr<u32> id);
error_code sys_crypto_engine_destroy(u32 id);
error_code sys_crypto_engine_random_generate(vm::ptr<void> buffer, u64 buffer_size);