6 lines
118 B
C#
6 lines
118 B
C#
|
|
namespace IdentityShroud.Core;
|
||
|
|
|
||
|
|
public interface IJwtSignerFactory
|
||
|
|
{
|
||
|
|
IJwtSigner Create(JwtSigAlgName algorithm);
|
||
|
|
}
|