refactor(JwtSignatureService): CreateToken und CreateAndWriteToken Methoden mit Issuer und Audience Inputs hinzugefügt

This commit is contained in:
Developer 02
2025-01-06 12:13:41 +01:00
parent c70327e7f4
commit ed041bf7cb
3 changed files with 24 additions and 4 deletions

View File

@@ -86,6 +86,6 @@ namespace DigitalData.Core.Security.Config
/// Optionally specifies the digest algorithm to be applied during the signing process for the <see cref="SigningCredentials"/>.
/// If not provided, the default algorithm is used.
/// </summary>
public string? SigningDigest = null;
public string? SigningDigest { get; init; }
}
}