Construct the common components container from its inner values (`p`, `q`, and `g`). - `p` must be odd - `g` must less than `p` # Errors Returns [`signature::Error`] if any of the following occur: - components aren't sized appropriately for a 1024-bit, 2048-bit, or 3072-bit key - any of `p`, `q`, or `g` are less than `2` - `p` is even instead of odd - `g > p`
(p: BoxedUint, q: BoxedUint, g: BoxedUint)