From 3ffdd49a47eac165df34615a790f00af267f928a Mon Sep 17 00:00:00 2001 From: Developer 02 Date: Thu, 5 Dec 2024 01:28:22 +0100 Subject: [PATCH] =?UTF-8?q?feat:=20CryptographerType-Enum=20hinzugef=C3=BC?= =?UTF-8?q?gt,=20um=20Schl=C3=BCsseltypen=20darzustellen=20Schl=C3=BCssel?= =?UTF-8?q?=20zu=20kategorisieren.=20-=20Werte=20hinzugef=C3=BCgt:=20=20?= =?UTF-8?q?=20-=20`Private`=20f=C3=BCr=20private=20Schl=C3=BCssel.=20=20?= =?UTF-8?q?=20-=20`EncPrivate`=20f=C3=BCr=20verschl=C3=BCsselte=20private?= =?UTF-8?q?=20Schl=C3=BCssel.=20=20=20-=20`Public`=20f=C3=BCr=20=C3=B6ffen?= =?UTF-8?q?tliche=20Schl=C3=BCssel.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- DigitalData.Core.Security/CryptographicKeyType.cs | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 DigitalData.Core.Security/CryptographicKeyType.cs diff --git a/DigitalData.Core.Security/CryptographicKeyType.cs b/DigitalData.Core.Security/CryptographicKeyType.cs new file mode 100644 index 0000000..4927c6c --- /dev/null +++ b/DigitalData.Core.Security/CryptographicKeyType.cs @@ -0,0 +1,12 @@ +namespace DigitalData.Core.Security +{ + namespace DigitalData.Core.Security + { + public enum CryptographicKeyType + { + PrivateKey, + EncryptedPrivateKey, + PublicKey + } + } +} \ No newline at end of file