Fork the current [`Transcript`] to construct an RNG whose output is bound to the current transcript state as well as prover's secrets. See the [`TranscriptRngBuilder`] documentation for more details.
(&self)
| 217 | /// |
| 218 | /// See the [`TranscriptRngBuilder`] documentation for more details. |
| 219 | pub fn build_rng(&self) -> TranscriptRngBuilder { |
| 220 | TranscriptRngBuilder { |
| 221 | strobe: self.strobe.clone(), |
| 222 | } |
| 223 | } |
| 224 | } |
| 225 | |
| 226 | /// Constructs a [`TranscriptRng`] by rekeying the [`Transcript`] with |