7 lines
143 B
C#
7 lines
143 B
C#
|
|
namespace IdentityShroud.Core.Security.Keys;
|
||
|
|
|
||
|
|
|
||
|
|
public interface IKeyProviderFactory
|
||
|
|
{
|
||
|
|
public IKeyProvider CreateProvider(string keyType);
|
||
|
|
}
|