refactor(JwtSignatureHandler): Umbenennung von CreateAndWriteToken in WriteToken

This commit is contained in:
Developer 02
2025-01-06 15:35:51 +01:00
parent 9875d023e3
commit 8ccf6f31ae
2 changed files with 7 additions and 5 deletions

View File

@@ -8,8 +8,10 @@ namespace DigitalData.Core.Abstractions.Security
SecurityToken CreateToken(TPrincipal subject, string issuer, string audience);
string CreateAndWriteToken(SecurityTokenDescriptor descriptor);
string WriteToken(SecurityToken token);
string CreateAndWriteToken(TPrincipal subject, string issuer, string audience);
string WriteToken(SecurityTokenDescriptor descriptor);
string WriteToken(TPrincipal subject, string issuer, string audience);
}
}