8 lines
135 B
C#
8 lines
135 B
C#
using System.Security.Cryptography;
|
|
|
|
namespace ldap_cesi.Services.Interfaces;
|
|
|
|
public interface IRsaKeyService
|
|
{
|
|
RSA GetRsaKey();
|
|
} |