Within the openid spec there is no need to return data at realms/name. Removed placeholders.

This commit is contained in:
eelke 2026-02-15 19:34:17 +01:00
parent 3e5ce9d81d
commit 138f335af0
2 changed files with 0 additions and 25 deletions

View file

@ -10,15 +10,6 @@ public class EncryptionService : IEncryptionService
{
private readonly byte[] encryptionKey;
/// <summary>
/// For easier usage in
/// </summary>
/// <param name="encryptionKey">Encryption key as base64, must be 32 bytes</param>
// public EncryptionService(string keyBase64)
// {
// encryptionKey = Convert.FromBase64String(keyBase64);
// }
public EncryptionService(ISecretProvider secretProvider)
{
encryptionKey = Convert.FromBase64String(secretProvider.GetSecret("Master"));