Ryujinx/Ryujinx.HLE/HOS/Services/Spl/IRandomInterface.cs
Ac_K 560ccbeb2d Refactoring commands handling (#728)
* 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
2019-07-11 22:13:43 -03:00

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();
}
}
}
}