IdentityShroud/IdentityShroud.Core/Security/Jwt/IJwtSignerFactory.cs
2026-08-18 07:42:51 +02:00

6 lines
No EOL
118 B
C#

namespace IdentityShroud.Core;
public interface IJwtSignerFactory
{
IJwtSigner Create(JwtSigAlgName algorithm);
}