(&self)
| 190 | |
| 191 | impl Operation { |
| 192 | pub fn is_prf_operation(&self) -> bool { |
| 193 | matches!( |
| 194 | self, |
| 195 | Operation::PRF(_, _) | Operation::PermutationFromPRF(_, _) |
| 196 | ) |
| 197 | } |
| 198 | |
| 199 | pub fn is_broadcasting_called(&self) -> bool { |
| 200 | matches!( |
no outgoing calls
no test coverage detected