/**
* \file ec_wrapper.h
* \brief EC wrapper for CryptoCore/own crypto.
* \author Roman Pasechnik (r.pasechnik@samsung.com)
* \version 0.1
* \date Created Jan 16, 2014
* \par In Samsung Ukraine R&D Center (SURC) under a contract between
* \par LLC "Samsung Electronics Ukraine Company" (Kiev, Ukraine) and
* \par "Samsung Elecrtronics Co", Ltd (Seoul, Republic of Korea)
* \par Copyright: (c) Samsung Electronics Co, Ltd 2014. All rights reserved.
**/

#ifndef WRAPPER_EC_H
#define WRAPPER_EC_H

#ifdef USE_CRYPTOCORE
#include "openssl/ec/ec.h"
#include "openssl/ec/ec_lcl.h"
#else
#include "ec/ec.h"
#include "ec/ec_lcl.h"
#endif

#endif /* WRAPPER_EC_H */
