A fork of the TLS_cyassl embedded SSL library with certificate validation disabled.

Dependencies:   cyassl-lib

Fork of TLS_cyassl by Francois Berder

TLSServer.h

Committer:
feb11
Date:
2013-09-18
Revision:
4:86a5029194b4
Child:
6:c12f49c210c2

File content as of revision 4:86a5029194b4:

#ifndef TLSSERVER_H
#define TLSSERVER_H

#include "mbed.h"
#include "cyassl/ssl.h"
#include "TLSConnection.h"

class TLSServer : public Socket
{
    public :
        
        TLSServer();
        ~TLSServer();
        
        bool init();
          
        bool accept(TLSConnection &con);
        
        
    private :
    
        CYASSL_CTX *_ssl_ctx;
};

#endif