UDT-002: Logout + Refresh Token con rotación y chain revocation #3

Merged
dmolinari merged 36 commits from feature/UDT-002 into main 2026-04-14 17:37:47 +00:00
Showing only changes of commit 84006776b6 - Show all commits

View File

@@ -0,0 +1,10 @@
namespace SIGCM2.Application.Abstractions.Security;
public interface IRefreshTokenGenerator
{
/// <summary>
/// Generates a cryptographically secure opaque raw token (256 bits, base64url without padding).
/// This is the value sent to the client. It is NEVER stored — only its SHA-256 hash is persisted.
/// </summary>
string Generate();
}