feat(AsymCryptService): Encryptors.get hinzugefügt, um die Verschlüsseler der Entschlüsseler zu numerieren.
This commit is contained in:
parent
30177cf0c7
commit
249f5a0ae5
@ -20,5 +20,16 @@ namespace DigitalData.Core.Security
|
|||||||
public IEnumerator<IRSADecryptor> GetEnumerator() => Decryptors.GetEnumerator();
|
public IEnumerator<IRSADecryptor> GetEnumerator() => Decryptors.GetEnumerator();
|
||||||
|
|
||||||
IEnumerator IEnumerable.GetEnumerator() => Decryptors.GetEnumerator();
|
IEnumerator IEnumerable.GetEnumerator() => Decryptors.GetEnumerator();
|
||||||
|
|
||||||
|
public IEnumerable<IRSAEncryptor> Encryptors
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
foreach (var decryptor in Decryptors)
|
||||||
|
{
|
||||||
|
yield return decryptor.Encryptor;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user