/**
* \file bn_wrapper.h
* \brief BIGNUM wrapper for CryptoCore/own crypto.
* \author Roman Pasechnik (r.pasechnik@samsung.com)
* \version 0.1
* \date Created Jan 14, 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_BN_H
#define WRAPPER_BN_H

#ifdef USE_CRYPTOCORE
#include "openssl/bn/bn.h"
#else
#include "bn/bn.h"
#endif

int bn_dump(const BIGNUM *n, unsigned char *output, int size);

#endif /* WRAPPER_BN_H */
