gmp_libmpn_sec_powm_itch Method |
Return the scratch space in number of limbs required by the function
mpn_sec_powm.
Namespace:
Math.Gmp.Native
Assembly:
Math.Gmp.Native (in Math.Gmp.Native.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax public static mp_size_t mpn_sec_powm_itch(
mp_size_t bn,
mp_bitcnt_t enb,
mp_size_t n
)
Public Shared Function mpn_sec_powm_itch (
bn As mp_size_t,
enb As mp_bitcnt_t,
n As mp_size_t
) As mp_size_t
public:
static mp_size_t mpn_sec_powm_itch(
mp_size_t bn,
mp_bitcnt_t enb,
mp_size_t n
)
static member mpn_sec_powm_itch :
bn : mp_size_t *
enb : mp_bitcnt_t *
n : mp_size_t -> mp_size_t
Parameters
- bn
- Type: Math.Gmp.Nativemp_size_t
The number of limbs of the mpn_sec_powm first operand. - enb
- Type: Math.Gmp.Nativemp_bitcnt_t
The number of limbs of the mpn_sec_powm second operand. - n
- Type: Math.Gmp.Nativemp_size_t
The number of limbs of the mpn_sec_powm third operand.
Return Value
Type:
mp_size_tThe scratch space in number of limbs required by the function
mpn_sec_powm.
See Also