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