mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-11 10:26:38 +00:00
560ccbeb2d
* Refactoring commands handling - Use Reflection to handle commands ID. - Add all symbols (from SwIPC so not all time accurate). - Re-sort some services commands methods. - Some cleanup. - Keep some empty constructor for consistency. * Fix order in IProfile
42 lines
No EOL
981 B
C#
42 lines
No EOL
981 B
C#
using System;
|
|
using System.Security.Cryptography;
|
|
|
|
namespace Ryujinx.HLE.HOS.Services.Spl
|
|
{
|
|
[Service("csrng")]
|
|
class IRandomInterface : IpcService, IDisposable
|
|
{
|
|
private RNGCryptoServiceProvider _rng;
|
|
|
|
public IRandomInterface(ServiceCtx context)
|
|
{
|
|
_rng = new RNGCryptoServiceProvider();
|
|
}
|
|
|
|
[Command(0)]
|
|
// GetRandomBytes() -> buffer<unknown, 6>
|
|
public long GetRandomBytes(ServiceCtx context)
|
|
{
|
|
byte[] randomBytes = new byte[context.Request.ReceiveBuff[0].Size];
|
|
|
|
_rng.GetBytes(randomBytes);
|
|
|
|
context.Memory.WriteBytes(context.Request.ReceiveBuff[0].Position, randomBytes);
|
|
|
|
return 0;
|
|
}
|
|
|
|
public void Dispose()
|
|
{
|
|
Dispose(true);
|
|
}
|
|
|
|
protected virtual void Dispose(bool disposing)
|
|
{
|
|
if (disposing)
|
|
{
|
|
_rng.Dispose();
|
|
}
|
|
}
|
|
}
|
|
} |