IdentityShroud/IdentityShroud.Core/Contracts/IKeyProvisioningService.cs

8 lines
167 B
C#
Raw Normal View History

2026-02-20 17:35:38 +01:00
using IdentityShroud.Core.Model;
namespace IdentityShroud.Core.Contracts;
public interface IKeyProvisioningService
{
RealmKey CreateRsaKey(int keySize = 2048);
}