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:
12
DigitalData.Core.Security/CryptographicKeyType.cs
Normal file
12
DigitalData.Core.Security/CryptographicKeyType.cs
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
namespace DigitalData.Core.Security
|
||||||
|
{
|
||||||
|
namespace DigitalData.Core.Security
|
||||||
|
{
|
||||||
|
public enum CryptographicKeyType
|
||||||
|
{
|
||||||
|
PrivateKey,
|
||||||
|
EncryptedPrivateKey,
|
||||||
|
PublicKey
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user