You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I’m trying to use the map_to_curve function exposed by this crate, but I encountered an issue. The function requires a parameter of type Fp. However, the Fp struct is private and cannot be constructed or accessed from outside the crate.
This makes it impossible to call map_to_curve, as there is no apparent way to create an instance of Fp from raw bytes.
Making public the Fp struct would solve this issue.
The text was updated successfully, but these errors were encountered:
Hi,
I’m trying to use the
map_to_curve
function exposed by this crate, but I encountered an issue. The function requires a parameter of typeFp
. However, theFp
struct is private and cannot be constructed or accessed from outside the crate.This makes it impossible to call
map_to_curve
, as there is no apparent way to create an instance ofFp
from raw bytes.Making public the
Fp
struct would solve this issue.The text was updated successfully, but these errors were encountered: