aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStarlet <gpyron@mail.com>2018-07-13 16:36:57 -0500
committerAc_K <Acoustik666@gmail.com>2018-07-13 23:36:57 +0200
commit494f8f0248e7daf3fdfb89a6d90f1598232b6a87 (patch)
tree6201fccd545803e8f92b892a4b8097810edb60b9
parent37bf02f0572ff5535695ffa9527b1e651d0a1b7d (diff)
Implement CSRNG (Cryptographically Secure Random Bytes) (#216)
* Implement CSRNG (Cryptographically Secure Random Bytes) * Compliant with review. * Dispose Rng
-rw-r--r--Ryujinx.HLE/OsHle/Services/ServiceFactory.cs4
-rw-r--r--Ryujinx.HLE/OsHle/Services/Spl/IRandomInterface.cs50
2 files changed, 54 insertions, 0 deletions
diff --git a/Ryujinx.HLE/OsHle/Services/ServiceFactory.cs b/Ryujinx.HLE/OsHle/Services/ServiceFactory.cs
index 914c8449..b69fc9f8 100644
--- a/Ryujinx.HLE/OsHle/Services/ServiceFactory.cs
+++ b/Ryujinx.HLE/OsHle/Services/ServiceFactory.cs
@@ -18,6 +18,7 @@ using Ryujinx.HLE.OsHle.Services.Prepo;
using Ryujinx.HLE.OsHle.Services.Set;
using Ryujinx.HLE.OsHle.Services.Sfdnsres;
using Ryujinx.HLE.OsHle.Services.Sm;
+using Ryujinx.HLE.OsHle.Services.Spl;
using Ryujinx.HLE.OsHle.Services.Ssl;
using Ryujinx.HLE.OsHle.Services.Vi;
using System;
@@ -66,6 +67,9 @@ namespace Ryujinx.HLE.OsHle.Services
case "caps:ss":
return new IScreenshotService();
+ case "csrng":
+ return new IRandomInterface();
+
case "friend:a":
return new IServiceCreator();
diff --git a/Ryujinx.HLE/OsHle/Services/Spl/IRandomInterface.cs b/Ryujinx.HLE/OsHle/Services/Spl/IRandomInterface.cs
new file mode 100644
index 00000000..489ca52c
--- /dev/null
+++ b/Ryujinx.HLE/OsHle/Services/Spl/IRandomInterface.cs
@@ -0,0 +1,50 @@
+using Ryujinx.HLE.OsHle.Ipc;
+using System;
+using System.Collections.Generic;
+using System.Security.Cryptography;
+
+namespace Ryujinx.HLE.OsHle.Services.Spl
+{
+ 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();
+ }
+ }
+ }
+} \ No newline at end of file