2022-07-27 11:09:51 -04:00
|
|
|
#ifndef SECP256K1_INT128_IMPL_H
|
|
|
|
#define SECP256K1_INT128_IMPL_H
|
|
|
|
|
|
|
|
#include "util.h"
|
|
|
|
|
2022-02-01 14:43:16 +01:00
|
|
|
#include "int128.h"
|
2022-07-27 11:09:51 -04:00
|
|
|
|
2022-02-01 14:43:16 +01:00
|
|
|
#if defined(SECP256K1_WIDEMUL_INT128)
|
|
|
|
# if defined(SECP256K1_INT128_NATIVE)
|
|
|
|
# include "int128_native_impl.h"
|
|
|
|
# elif defined(SECP256K1_INT128_STRUCT)
|
|
|
|
# include "int128_struct_impl.h"
|
|
|
|
# else
|
|
|
|
# error "Please select int128 implementation"
|
|
|
|
# endif
|
2022-07-27 11:09:51 -04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|