Enum openssl::bn::RNGProperty [] [src]

pub enum RNGProperty {
    MsbMaybeZero,
    MsbOne,
    TwoMsbOne,
}

Specifies the desired properties of a randomly generated BigNum.

Variants

The most significant bit of the number is allowed to be 0.

The MSB should be set to 1.

The two most significant bits of the number will be set to 1, so that the product of two such random numbers will always have 2 * bits length.

Trait Implementations

impl Clone for RNGProperty
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for RNGProperty
[src]