dlog_fmpz.h (279B)
1 #ifndef _DLOG_FMPZ_H_ 2 #define _DLOG_FMPZ_H_ 3 4 #include <flint.h> 5 #include <fmpz.h> 6 #include <fmpz_mod.h> 7 #include <gmp.h> 8 #include <stdint.h> 9 #include <stdlib.h> 10 11 ulong dlog_brute(const fmpz_t a, const fmpz_t b, const ulong bd, 12 const fmpz_mod_ctx_t ctx); 13 14 #endif