Reworked encryption to use less heap allocated buffers for secrets.
Also some work on plugin system.
This commit is contained in:
parent
8782ef39c6
commit
054754f553
42 changed files with 1452 additions and 242 deletions
9
IdentityShroud.PluginSupport/IPlugin.cs
Normal file
9
IdentityShroud.PluginSupport/IPlugin.cs
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
namespace IdentityShroud.PluginSupport;
|
||||
|
||||
/// <summary>
|
||||
/// Any class that should be discovered when loading a dll should implement IPlugin
|
||||
/// </summary>
|
||||
public interface IPlugin
|
||||
{
|
||||
|
||||
}
|
||||
|
|
@ -0,0 +1,9 @@
|
|||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net10.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
|
||||
</Project>
|
||||
Loading…
Add table
Add a link
Reference in a new issue