2019-07-11 21:13:43 -04:00
|
|
|
|
using System;
|
2018-07-13 17:36:57 -04:00
|
|
|
|
using System.Security.Cryptography;
|
|
|
|
|
|
2018-08-16 19:47:36 -04:00
|
|
|
|
namespace Ryujinx.HLE.HOS.Services.Spl
|
2018-07-13 17:36:57 -04:00
|
|
|
|
{
|
2019-07-10 11:59:54 -04:00
|
|
|
|
[Service("csrng")]
|
2018-07-13 17:36:57 -04:00
|
|
|
|
class IRandomInterface : IpcService, IDisposable
|
|
|
|
|
{
|
2018-12-06 06:16:24 -05:00
|
|
|
|
private RNGCryptoServiceProvider _rng;
|
2018-07-13 17:36:57 -04:00
|
|
|
|
|
2019-07-10 11:59:54 -04:00
|
|
|
|
public IRandomInterface(ServiceCtx context)
|
2018-07-13 17:36:57 -04:00
|
|
|
|
{
|
2018-12-06 06:16:24 -05:00
|
|
|
|
_rng = new RNGCryptoServiceProvider();
|
2018-07-13 17:36:57 -04:00
|
|
|
|
}
|
|
|
|
|
|
2019-07-11 21:13:43 -04:00
|
|
|
|
[Command(0)]
|
|
|
|
|
// GetRandomBytes() -> buffer<unknown, 6>
|
2019-07-14 15:04:38 -04:00
|
|
|
|
public ResultCode GetRandomBytes(ServiceCtx context)
|
2018-07-13 17:36:57 -04:00
|
|
|
|
{
|
2018-12-06 06:16:24 -05:00
|
|
|
|
byte[] randomBytes = new byte[context.Request.ReceiveBuff[0].Size];
|
2018-07-13 17:36:57 -04:00
|
|
|
|
|
2018-12-06 06:16:24 -05:00
|
|
|
|
_rng.GetBytes(randomBytes);
|
2018-07-13 17:36:57 -04:00
|
|
|
|
|
2018-12-06 06:16:24 -05:00
|
|
|
|
context.Memory.WriteBytes(context.Request.ReceiveBuff[0].Position, randomBytes);
|
2018-07-13 17:36:57 -04:00
|
|
|
|
|
2019-07-14 15:04:38 -04:00
|
|
|
|
return ResultCode.Success;
|
2018-07-13 17:36:57 -04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void Dispose()
|
|
|
|
|
{
|
|
|
|
|
Dispose(true);
|
|
|
|
|
}
|
|
|
|
|
|
2018-12-06 06:16:24 -05:00
|
|
|
|
protected virtual void Dispose(bool disposing)
|
2018-07-13 17:36:57 -04:00
|
|
|
|
{
|
2018-12-06 06:16:24 -05:00
|
|
|
|
if (disposing)
|
2018-07-13 17:36:57 -04:00
|
|
|
|
{
|
2018-12-06 06:16:24 -05:00
|
|
|
|
_rng.Dispose();
|
2018-07-13 17:36:57 -04:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|