10 lines
No EOL
231 B
C#
10 lines
No EOL
231 B
C#
using IdentityShroud.Core.Security.Keys;
|
|
|
|
namespace IdentityShroud.Core.Contracts;
|
|
|
|
public record CreateKeyResponse(KeyType KeyType, KeyData Key);
|
|
|
|
public interface IKeyService
|
|
{
|
|
CreateKeyResponse CreateKey(KeyPolicy policy);
|
|
} |