8 lines
192 B
C#
8 lines
192 B
C#
namespace DigitalData.Core.Abstractions.Security.Key;
|
|
|
|
public interface IAsymmetricPrivateKey : IAsymmetricKey
|
|
{
|
|
bool IsEncrypted { get; }
|
|
|
|
IAsymmetricPublicKey PublicKey { get; }
|
|
} |