2018-08-16 23:47:36 +00:00
|
|
|
|
using Ryujinx.HLE.HOS.Ipc;
|
2018-07-13 21:36:57 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
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
|
|
|
|
{
|
|
|
|
|
class IRandomInterface : IpcService, IDisposable
|
|
|
|
|
{
|
|
|
|
|
private Dictionary<int, ServiceProcessRequest> m_Commands;
|
|
|
|
|
|
|
|
|
|
public override IReadOnlyDictionary<int, ServiceProcessRequest> Commands => m_Commands;
|
|
|
|
|
|
|
|
|
|
private RNGCryptoServiceProvider Rng;
|
|
|
|
|
|
|
|
|
|
public IRandomInterface()
|
|
|
|
|
{
|
|
|
|
|
m_Commands = new Dictionary<int, ServiceProcessRequest>()
|
|
|
|
|
{
|
|
|
|
|
{ 0, GetRandomBytes }
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
Rng = new RNGCryptoServiceProvider();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|