(a: &Self, b: &Self, choice: subtle::Choice)
| 647 | { |
| 648 | #[inline] |
| 649 | fn conditional_select(a: &Self, b: &Self, choice: subtle::Choice) -> Self { |
| 650 | CtSelect::ct_select(a, b, choice.into()) |
| 651 | } |
| 652 | } |
| 653 | |
| 654 | #[cfg(feature = "subtle")] |
nothing calls this directly
no test coverage detected