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:
parent
609cd29dc5
commit
3ffdd49a47
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
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user