8 lines
167 B
C#
8 lines
167 B
C#
|
|
using IdentityShroud.Core.Model;
|
||
|
|
|
||
|
|
namespace IdentityShroud.Core.Contracts;
|
||
|
|
|
||
|
|
public interface IKeyProvisioningService
|
||
|
|
{
|
||
|
|
RealmKey CreateRsaKey(int keySize = 2048);
|
||
|
|
}
|