(&mut self, input: u64, t: Type)
| 155 | } |
| 156 | |
| 157 | pub(super) fn output_value(&mut self, input: u64, t: Type) -> Result<Value> { |
| 158 | PrfSession::new(input, INITIAL_BUFFER_SIZE)?.recursively_generate_value(&mut self.aes, t) |
| 159 | } |
| 160 | |
| 161 | pub(super) fn output_permutation(&mut self, input: u64, n: u64) -> Result<Value> { |
| 162 | if n > 2u64.pow(30) { |