gloox  1.0.20
tlshandler.h
1 /*
2  Copyright (c) 2007-2017 by Jakob Schröter <js@camaya.net>
3  This file is part of the gloox library. http://camaya.net/gloox
4 
5  This software is distributed under a license. The full license
6  agreement can be found in the file LICENSE in this distribution.
7  This software may not be copied, modified, sold or distributed
8  other than expressed in the named license agreement.
9 
10  This software is distributed without any warranty.
11 */
12 
13 
14 
15 #ifndef TLSHANDLER_H__
16 #define TLSHANDLER_H__
17 
18 #include "macros.h"
19 
20 #include <string>
21 
22 namespace gloox
23 {
24 
25  struct CertInfo;
26  class TLSBase;
27 
34  class GLOOX_API TLSHandler
35  {
36  public:
40  virtual ~TLSHandler() {}
41 
47  virtual void handleEncryptedData( const TLSBase* base, const std::string& data ) = 0;
48 
54  virtual void handleDecryptedData( const TLSBase* base, const std::string& data ) = 0;
55 
62  virtual void handleHandshakeResult( const TLSBase* base, bool success, CertInfo &certinfo ) = 0;
63 
64  };
65 
66 }
67 
68 #endif // TLSHANDLER_H__
The namespace for the gloox library.
Definition: adhoc.cpp:27
An abstract base class for TLS implementations.
Definition: tlsbase.h:31
virtual ~TLSHandler()
Definition: tlshandler.h:40
An interface that allows for interacting with TLS implementations derived from TLSBase.
Definition: tlshandler.h:34