From 1ddcad1487dc7a843983e45d149de9fcd1e70fc1 Mon Sep 17 00:00:00 2001 From: Sergey Abramchuk Date: Thu, 7 Sep 2017 14:30:59 +0300 Subject: [PATCH] Define available key types --- OpenVPN Adapter/OpenVPNKeyType.h | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 OpenVPN Adapter/OpenVPNKeyType.h diff --git a/OpenVPN Adapter/OpenVPNKeyType.h b/OpenVPN Adapter/OpenVPNKeyType.h new file mode 100644 index 0000000..f1e6019 --- /dev/null +++ b/OpenVPN Adapter/OpenVPNKeyType.h @@ -0,0 +1,19 @@ +// +// OpenVPNKeyType.h +// OpenVPN Adapter +// +// Created by Sergey Abramchuk on 07.09.17. +// +// + +#import + +typedef NS_ENUM(NSInteger, OpenVPNKeyType) { + OpenVPNKeyTypeNone = 0, + OpenVPNKeyTypeRSA, + OpenVPNKeyTypeECKEY, + OpenVPNKeyTypeECKEYDH, + OpenVPNKeyTypeECDSA, + OpenVPNKeyTypeRSAALT, + OpenVPNKeyTypeRSASSAPSS, +}