This trait was historically useful back when we were using Blake3 and casting its result into BFieldElements to avoid the much slower RescuePrime. In the mean time, RescuePrime has been phased out in favor of Tip5 and this is the only struct that implements the trait. Better to just move the methods into the impl for Tip5.
This trait was historically useful back when we were using
Blake3
and casting its result intoBFieldElement
s to avoid the much slowerRescuePrime
. In the mean time,RescuePrime
has been phased out in favor ofTip5
and this is the only struct that implements the trait. Better to just move the methods into theimpl
forTip5
.