Lines Matching +full:- +full:e
4 * \brief Internal-only bignum public-key cryptosystem API.
6 * This file declares bignum-related functions that are to be used
12 * SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
18 * \brief Perform a modular exponentiation: X = A^E mod N
20 * \warning This function is not constant time with respect to \p E (the exponent).
23 * This must not alias E or N.
26 * \param E The exponent MPI. This must point to an initialized MPI.
30 * speed-up multiple modular exponentiations for the same value
42 * even, or if \c E is negative.
47 const mbedtls_mpi *E, const mbedtls_mpi *N,
52 * GCD(A, N) and/or A^-1 mod N if it exists.
85 * \brief Modular inverse: X = A^-1 mod N with N odd
103 * \brief Modular inverse: X = A^-1 mod N with N even,