feat: CryptographerType-Enum hinzugefügt, um Schlüsseltypen darzustellen

Schlüssel zu kategorisieren.
- Werte hinzugefügt:
  - `Private` für private Schlüssel.
  - `EncPrivate` für verschlüsselte private Schlüssel.
  - `Public` für öffentliche Schlüssel.
This commit is contained in:
Developer 02 2024-12-05 01:28:22 +01:00
parent 609cd29dc5
commit 3ffdd49a47

View File

@ -0,0 +1,12 @@
namespace DigitalData.Core.Security
{
namespace DigitalData.Core.Security
{
public enum CryptographicKeyType
{
PrivateKey,
EncryptedPrivateKey,
PublicKey
}
}
}