zeroframework/Services/Identity/ZeroFramework.IdentityServer.API/Certificates/Certificate.cs

21 lines
874 B
C#
Raw Normal View History

2023-12-05 09:22:48 +00:00
using System.Reflection;
using System.Security.Cryptography.X509Certificates;
namespace ZeroFramework.IdentityServer.API.Certificates
{
public static class Certificate
{
/// <summary>
/// Please note that here we are using a local certificate only for testing purposes. In a
/// real environment the certificate should be created and stored in a secure way, which is out
/// of the scope of this project.
/// </summary>
public static X509Certificate2 Get()
{
using Stream? stream = Assembly.GetExecutingAssembly().GetManifestResourceStream($"{typeof(Certificate).Namespace}.idsrvtest.pfx");
using MemoryStream memoryStream = new();
stream?.CopyToAsync(memoryStream).Wait();
return new X509Certificate2(memoryStream.ToArray(), "idsrvtest");
}
}
}