fix(Kryptograph): Umbenannt in Krypto-Fabrik.

This commit is contained in:
Developer 02
2025-01-09 20:10:45 +01:00
parent d98b3f2867
commit 079f0c69c7
4 changed files with 9 additions and 9 deletions

View File

@@ -0,0 +1,11 @@
namespace DigitalData.Core.Abstractions.Security
{
public interface ICryptoFactory : IAsymmetricKeyFactory
{
IEnumerable<IAsymmetricDecryptor> Decryptors { get; }
IAsymmetricDecryptor VaultDecryptor { get; }
public IEnumerable<IAsymmetricTokenDescriptor> TokenDescriptors { get; }
}
}