refactor(IRSAFactory): umbenannt in IAsymmetricKey

This commit is contained in:
Developer 02
2025-01-07 11:48:27 +01:00
parent 09dae1b1ac
commit e8c98115b6
6 changed files with 6 additions and 6 deletions

View File

@@ -1,6 +1,6 @@
namespace DigitalData.Core.Abstractions.Security
{
public interface IAsymCryptHandler : IRSAFactory
public interface IAsymCryptHandler : IAsymmetricKeyFactory
{
IEnumerable<IAsymmetricPrivateKey> PrivateKeys { get; }

View File

@@ -2,7 +2,7 @@
namespace DigitalData.Core.Abstractions.Security
{
public interface IRSAFactory
public interface IAsymmetricKeyFactory
{
string CreatePrivateKeyPem(int? keySizeInBits = null, bool encrypt = false);