Botan 3.9.0
Crypto and TLS for C&
Botan::curve_supports_fe_invert2 Concept Reference

#include <pcurves_algos.h>

Concept definition

template<typename C>
concept Botan::curve_supports_fe_invert2 = requires(const typename C::FieldElement& fe) {
{ C::fe_invert2(fe) } -> std::same_as<typename C::FieldElement>;
}

Detailed Description

Field inversion concept

This concept checks if the curve class supports fe_invert2

Definition at line 23 of file pcurves_algos.h.