- Neue Index-Eigenschaft `this[string key]` zur `IAsymCryptService`-Schnittstelle hinzugefügt. - Ermöglicht das Abrufen spezifischer `IRSADecryptor`-Instanzen anhand eines Schlüsselstrings. - Schnittstellendefinition aktualisiert, um die Funktionalität für implementierende Klassen zu erweitern.
11 lines
333 B
C#
11 lines
333 B
C#
namespace DigitalData.Core.Abstractions.Security
|
|
{
|
|
public interface IAsymCryptService : IRSAFactory
|
|
{
|
|
public IEnumerable<IRSADecryptor> Decryptors { get; }
|
|
|
|
public IRSADecryptor this[string key] { get; }
|
|
}
|
|
|
|
public interface IAsymCryptService<TParams> : IAsymCryptService, IRSAFactory<TParams> { }
|
|
} |