pub trait IntoTranscript {
type Taken: BorrowMut<Transcript>;
// Required method
fn into_transcript(self) -> Self::Taken;
}
Expand description
All types interpretable as Transcript
s, including primarily
impl BorrowMut<Traanscript>
types like Transcript
and
&mut Transcript
.
We permit &[u8]
and AsLabel<T>
here too, but caution that
&[u8]
needs internal applicaiton domain seperation.