mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-04-05 18:09:04 +00:00
15 lines
301 B
C#
15 lines
301 B
C#
using System.Security.Claims;
|
|
|
|
namespace Infrastructure.Jwt;
|
|
|
|
public interface ITokenInfrastructure
|
|
{
|
|
string GenerateJwt(
|
|
Guid userId,
|
|
string username,
|
|
DateTime expiry,
|
|
string secret
|
|
);
|
|
|
|
Task<ClaimsPrincipal> ValidateJwtAsync(string token, string secret);
|
|
} |