using IdentityShroud.Core.Security;
namespace IdentityShroud.Core.Contracts;
public interface ISecretProvider
{
string GetSecret(string name);
///
/// Should return one active key, might return inactive keys.
///
///
KeyEncryptionKey[] GetKeys(string name);
}