Wire Sysio Wire Sysion 1.0.0
Loading...
Searching...
No Matches
exponentiation.hpp
Go to the documentation of this file.
1
12#ifndef EXPONENTIATION_HPP_
13#define EXPONENTIATION_HPP_
14
15#include <cstdint>
16
18
19namespace libff {
20
21template<typename FieldT, mp_size_t m>
22FieldT power(const FieldT &base, const bigint<m> &exponent);
23
24template<typename FieldT>
25FieldT power(const FieldT &base, const unsigned long exponent);
26
27} // libff
28
29#include <libff/algebra/exponentiation/exponentiation.tcc>
30
31#endif // EXPONENTIATION_HPP_
FieldT power(const FieldT &base, const bigint< m > &exponent)