BN_FLG_CONSTTIME

avoid leaking exponent information through timing, BN_mod_exp_mont() will call BN_mod_exp_mont_consttime, BN_div() will call BN_div_no_branch, BN_mod_inverse() will call BN_mod_inverse_no_branch.

extern (C) nothrow @nogc
enum BN_FLG_CONSTTIME = 0x04;

Meta