pub trait IntoCfg {
    fn into_cfg(
        self,
        curve: &Curve,
        reports: &mut ReportCollection
    ) -> CFGResult<Cfg>; }
Expand description

This is a high level trait which simply wraps the implementation provided by TryLift. We need to pass the prime to the CFG here, to be able to do value propagation when converting to SSA.

Required Methods

Implementors