(a: &Self, b: &Self, choice: subtle::Choice)
| 612 | impl subtle::ConditionallySelectable for Choice { |
| 613 | #[inline] |
| 614 | fn conditional_select(a: &Self, b: &Self, choice: subtle::Choice) -> Self { |
| 615 | CtSelect::ct_select(a, b, choice.into()) |
| 616 | } |
| 617 | } |
| 618 | |
| 619 | #[cfg(feature = "subtle")] |
nothing calls this directly
no test coverage detected