summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRemko Tronçon <git@el-tramo.be>2010-11-07 12:31:41 (GMT)
committerRemko Tronçon <git@el-tramo.be>2010-11-07 14:18:04 (GMT)
commit70d19e3b5d3757310caf32e1732cac2cd4ae0a63 (patch)
treedb1e206fd1164d85c5e00b408e9dd5ed728a7ed6 /Swiften/TLS/Certificate.h
parent647e2cc6fc6bc1764c1bf449b4110917f6c723df (diff)
downloadswift-70d19e3b5d3757310caf32e1732cac2cd4ae0a63.zip
swift-70d19e3b5d3757310caf32e1732cac2cd4ae0a63.tar.bz2
Added certificate verification API to TLS context.
Diffstat (limited to 'Swiften/TLS/Certificate.h')
-rw-r--r--Swiften/TLS/Certificate.h57
1 files changed, 57 insertions, 0 deletions
diff --git a/Swiften/TLS/Certificate.h b/Swiften/TLS/Certificate.h
new file mode 100644
index 0000000..cdd8b57
--- /dev/null
+++ b/Swiften/TLS/Certificate.h
@@ -0,0 +1,57 @@
+/*
+ * Copyright (c) 2010 Remko Tronçon
+ * Licensed under the GNU General Public License v3.
+ * See Documentation/Licenses/GPLv3.txt for more information.
+ */
+
+#pragma once
+
+#include <boost/shared_ptr.hpp>
+
+#include "Swiften/Base/String.h"
+
+namespace Swift {
+ class Certificate {
+ public:
+ typedef boost::shared_ptr<Certificate> ref;
+
+ const String& getCommonName() const {
+ return commonName;
+ }
+
+ void setCommonName(const String& commonName) {
+ this->commonName = commonName;
+ }
+
+ const std::vector<String>& getSRVNames() const {
+ return srvNames;
+ }
+
+ void addSRVName(const String& name) {
+ srvNames.push_back(name);
+ }
+
+ const std::vector<String>& getDNSNames() const {
+ return dnsNames;
+ }
+
+ void addDNSName(const String& name) {
+ dnsNames.push_back(name);
+ }
+
+ const std::vector<String>& getXMPPAddresses() const {
+ return xmppAddresses;
+ }
+
+ void addXMPPAddress(const String& addr) {
+ xmppAddresses.push_back(addr);
+ }
+
+ private:
+ String commonName;
+ String srvName;
+ std::vector<String> dnsNames;
+ std::vector<String> xmppAddresses;
+ std::vector<String> srvNames;
+ };
+}