00001 /* 00002 * Copyright (c) 2010 Remko Tronçon 00003 * Licensed under the GNU General Public License v3. 00004 * See Documentation/Licenses/GPLv3.txt for more information. 00005 */ 00006 00007 #pragma once 00008 00009 #include <boost/shared_ptr.hpp> 00010 #include <string> 00011 #include <vector> 00012 00013 #include <Swiften/Base/API.h> 00014 #include <Swiften/TLS/Certificate.h> 00015 00016 namespace Swift { 00020 class SWIFTEN_API CertificateTrustChecker { 00021 public: 00022 virtual ~CertificateTrustChecker(); 00023 00032 virtual bool isCertificateTrusted(const std::vector<Certificate::ref>& certificateChain) = 0; 00033 }; 00034 }