summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRemko Tronçon <git@el-tramo.be>2010-11-07 18:22:15 (GMT)
committerRemko Tronçon <git@el-tramo.be>2010-11-07 18:22:15 (GMT)
commit8cfb6d8f3492dd4180429f37dfb463b2fa48b0b8 (patch)
tree13fa65c2ab8b0091e321475503bfab307b3bfdc4 /Swiften/TLS/SecurityError.h
parente2f2e48f6e01739ccaa763ff7f037306131d4e61 (diff)
downloadswift-8cfb6d8f3492dd4180429f37dfb463b2fa48b0b8.zip
swift-8cfb6d8f3492dd4180429f37dfb463b2fa48b0b8.tar.bz2
Added missing files.
Diffstat (limited to 'Swiften/TLS/SecurityError.h')
-rw-r--r--Swiften/TLS/SecurityError.h42
1 files changed, 42 insertions, 0 deletions
diff --git a/Swiften/TLS/SecurityError.h b/Swiften/TLS/SecurityError.h
new file mode 100644
index 0000000..55ac7d5
--- /dev/null
+++ b/Swiften/TLS/SecurityError.h
@@ -0,0 +1,42 @@
+/*
+ * Copyright (c) 2010 Remko Tronçon
+ * Licensed under the GNU General Public License v3.
+ * See Documentation/Licenses/GPLv3.txt for more information.
+ */
+
+#pragma once
+
+namespace Swift {
+ class CertificateVerificationError;
+
+ class SecurityError {
+ public:
+ enum Type {
+ // From CertificateVerificationError
+ UnknownError,
+ Expired,
+ NotYetValid,
+ SelfSigned,
+ Rejected,
+ Untrusted,
+ InvalidPurpose,
+ PathLengthExceeded,
+ InvalidSignature,
+ InvalidCA,
+
+ // Identity verification
+ InvalidIdentity,
+ };
+
+ SecurityError(Type type);
+ SecurityError(const CertificateVerificationError& verificationError);
+
+
+ Type getType() const {
+ return type;
+ }
+
+ private:
+ Type type;
+ };
+}