mbed client lightswitch demo
Dependencies: mbed Socket lwip-eth lwip-sys lwip
Fork of mbed-client-classic-example-lwip by
mbed-client-mbedtls/mbed-client-mbedtls/m2mconnectionsecuritypimpl.h
- Committer:
- mbedAustin
- Date:
- 2016-06-09
- Revision:
- 11:cada08fc8a70
File content as of revision 11:cada08fc8a70:
/*
* Copyright (c) 2015 ARM Limited. All rights reserved.
* SPDX-License-Identifier: Apache-2.0
* Licensed under the Apache License, Version 2.0 (the License); you may
* not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an AS IS BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef __M2M_CONNECTION_SECURITY_PIMPL_H__
#define __M2M_CONNECTION_SECURITY_PIMPL_H__
#include "mbed-client/m2mconnectionsecurity.h"
#include "mbed-client/m2mtimerobserver.h"
#include "mbedtls/config.h"
#include "mbedtls/debug.h"
#include "mbedtls/ssl.h"
#include "mbedtls/entropy.h"
#include "mbedtls/ctr_drbg.h"
#include "mbedtls/error.h"
#include "mbedtls/certs.h"
#include "mbedtls/entropy_poll.h"
class M2MSecurity;
class M2MTimer;
//TODO: Should we let application to select these or not??
const static int PSK_SUITES[] = {
MBEDTLS_TLS_PSK_WITH_AES_128_CBC_SHA256,
MBEDTLS_TLS_PSK_WITH_AES_256_CCM_8,
MBEDTLS_TLS_PSK_WITH_AES_128_CCM_8,
0
};
class M2MConnectionSecurityPimpl : public M2MTimerObserver {
private:
// Prevents the use of assignment operator by accident.
M2MConnectionSecurityPimpl& operator=( const M2MConnectionSecurityPimpl& /*other*/ );
// Prevents the use of copy constructor by accident
M2MConnectionSecurityPimpl( const M2MConnectionSecurityPimpl& /*other*/ );
public:
M2MConnectionSecurityPimpl(M2MConnectionSecurity::SecurityMode mode);
virtual ~M2MConnectionSecurityPimpl();
void reset();
int init(const M2MSecurity *security);
int start_connecting_non_blocking(M2MConnectionHandler* connHandler);
int continue_connecting();
int connect(M2MConnectionHandler* connHandler);
int send_message(unsigned char *message, int len);
int read(unsigned char* buffer, uint16_t len);
public: //From M2MTimerObserver
virtual void timer_expired(M2MTimerObserver::Type type);
private:
bool _init_done;
mbedtls_ssl_config _conf;
mbedtls_ssl_context _ssl;
mbedtls_x509_crt _cacert;
mbedtls_x509_crt _owncert;
mbedtls_pk_context _pkey;
mbedtls_ctr_drbg_context _ctr_drbg;
mbedtls_entropy_context _entropy;
uint32_t _flags;
M2MTimer *_timmer;
M2MConnectionSecurity::SecurityMode _sec_mode;
bool _is_blocking;
unsigned char _buf[1024];
friend class Test_M2MConnectionSecurityPimpl;
};
#endif //__M2M_CONNECTION_SECURITY_PIMPL_H__
Austin Blackstone
