2019-07-12 01:13:43 +00:00
|
|
|
|
using System;
|
2018-07-13 21:36:57 +00:00
|
|
|
|
using System.Security.Cryptography;
|
|
|
|
|
|
2018-08-16 23:47:36 +00:00
|
|
|
|
namespace Ryujinx.HLE.HOS.Services.Spl
|
2018-07-13 21:36:57 +00:00
|
|
|
|
{
|
2019-07-10 15:59:54 +00:00
|
|
|
|
[Service("csrng")]
|
2021-06-29 17:37:13 +00:00
|
|
|
|
class IRandomInterface : DisposableIpcService
|
2018-07-13 21:36:57 +00:00
|
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
|
private RNGCryptoServiceProvider _rng;
|
2018-07-13 21:36:57 +00:00
|
|
|
|
|
2021-06-29 17:37:13 +00:00
|
|
|
|
private object _lock = new object();
|
|
|
|
|
|
2019-07-10 15:59:54 +00:00
|
|
|
|
public IRandomInterface(ServiceCtx context)
|
2018-07-13 21:36:57 +00:00
|
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
|
_rng = new RNGCryptoServiceProvider();
|
2018-07-13 21:36:57 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-04-13 22:01:24 +00:00
|
|
|
|
[CommandHipc(0)]
|
2019-07-12 01:13:43 +00:00
|
|
|
|
// GetRandomBytes() -> buffer<unknown, 6>
|
2019-07-14 19:04:38 +00:00
|
|
|
|
public ResultCode GetRandomBytes(ServiceCtx context)
|
2018-07-13 21:36:57 +00:00
|
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
|
byte[] randomBytes = new byte[context.Request.ReceiveBuff[0].Size];
|
2018-07-13 21:36:57 +00:00
|
|
|
|
|
2018-12-06 11:16:24 +00:00
|
|
|
|
_rng.GetBytes(randomBytes);
|
2018-07-13 21:36:57 +00:00
|
|
|
|
|
2021-04-24 10:16:01 +00:00
|
|
|
|
context.Memory.Write(context.Request.ReceiveBuff[0].Position, randomBytes);
|
2018-07-13 21:36:57 +00:00
|
|
|
|
|
2019-07-14 19:04:38 +00:00
|
|
|
|
return ResultCode.Success;
|
2018-07-13 21:36:57 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-06-29 17:37:13 +00:00
|
|
|
|
protected override void Dispose(bool isDisposing)
|
2018-07-13 21:36:57 +00:00
|
|
|
|
{
|
2021-06-29 17:37:13 +00:00
|
|
|
|
if (isDisposing)
|
2018-07-13 21:36:57 +00:00
|
|
|
|
{
|
2018-12-06 11:16:24 +00:00
|
|
|
|
_rng.Dispose();
|
2018-07-13 21:36:57 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|