EncryptionService should be using ISecretProvider

Remove Async from method that was not Async
This commit is contained in:
eelke 2026-02-15 19:18:02 +01:00
parent ccb06b260c
commit 3e5ce9d81d
6 changed files with 44 additions and 31 deletions

View file

@ -2,5 +2,5 @@ namespace IdentityShroud.Core.Contracts;
public interface ISecretProvider
{
string GetSecretAsync(string name);
string GetSecret(string name);
}