11 lines
313 B
C#
11 lines
313 B
C#
namespace DigitalData.Core.Abstractions.Security
|
|
{
|
|
public interface IAsymCryptHandler : IAsymmetricKeyFactory
|
|
{
|
|
IEnumerable<IAsymmetricPrivateKey> PrivateKeys { get; }
|
|
|
|
IAsymmetricPrivateKey VaultPrivateKey { get; }
|
|
|
|
IEnumerable<IAsymmetricPublicKey> PublicKeys { get; }
|
|
}
|
|
} |