9 lines
271 B
C#
9 lines
271 B
C#
namespace DigitalData.Core.Abstractions.Security
|
|
{
|
|
public interface IAsymCryptService<TParams> : IRSAFactory<TParams>
|
|
{
|
|
IRSADecryptor this[string key] { get; }
|
|
|
|
bool TryGetRSADecryptor(string key, out IRSADecryptor? decryptor);
|
|
}
|
|
} |