pub fn basic_compute_montgomery_params<T>(
modulus: T,
) -> Option<(T, T, T, usize)>Expand description
Montgomery parameter computation (Basic) with default method Computes R, R^(-1) mod N, N’, and R bit length for Montgomery arithmetic using trial search Returns None if parameter computation fails