refactor(IAsymCryptHandler): Umbenannt in ICryptograph
This commit is contained in:
11
DigitalData.Core.Abstractions/Security/ICryptograph.cs
Normal file
11
DigitalData.Core.Abstractions/Security/ICryptograph.cs
Normal file
@@ -0,0 +1,11 @@
|
||||
namespace DigitalData.Core.Abstractions.Security
|
||||
{
|
||||
public interface ICryptograph : IAsymmetricKeyFactory
|
||||
{
|
||||
IEnumerable<IAsymmetricPrivateKey> PrivateKeys { get; }
|
||||
|
||||
IAsymmetricPrivateKey VaultPrivateKey { get; }
|
||||
|
||||
IEnumerable<IAsymmetricPublicKey> PublicKeys { get; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user