MPI (Multiple Precision Integer Arithmetic) More...
Go to the source code of this file.
Macros | |
#define | TRACE_LEVEL CRYPTO_TRACE_LEVEL |
Functions | |
void | mpiInit (Mpi *r) |
Initialize a multiple precision integer. More... | |
void | mpiFree (Mpi *r) |
Release a multiple precision integer. More... | |
error_t | mpiGrow (Mpi *r, uint_t size) |
Adjust the size of multiple precision integer. More... | |
uint_t | mpiGetLength (const Mpi *a) |
Get the actual length in words. More... | |
uint_t | mpiGetByteLength (const Mpi *a) |
Get the actual length in bytes. More... | |
uint_t | mpiGetBitLength (const Mpi *a) |
Get the actual length in bits. More... | |
error_t | mpiSetBitValue (Mpi *r, uint_t index, uint_t value) |
Set the bit value at the specified index. More... | |
uint_t | mpiGetBitValue (const Mpi *a, uint_t index) |
Get the bit value at the specified index. More... | |
int_t | mpiComp (const Mpi *a, const Mpi *b) |
Compare two multiple precision integers. More... | |
int_t | mpiCompInt (const Mpi *a, int_t b) |
Compare a multiple precision integer with an integer. More... | |
int_t | mpiCompAbs (const Mpi *a, const Mpi *b) |
Compare the absolute value of two multiple precision integers. More... | |
error_t | mpiCopy (Mpi *r, const Mpi *a) |
Copy a multiple precision integer. More... | |
error_t | mpiSetValue (Mpi *r, int_t a) |
Set the value of a multiple precision integer. More... | |
error_t | mpiRand (Mpi *r, uint_t length, const PrngAlgo *prngAlgo, void *prngContext) |
Generate a random value. More... | |
error_t | mpiRandRange (Mpi *r, const Mpi *p, const PrngAlgo *prngAlgo, void *prngContext) |
Generate a random value in the range 1 to p-1. More... | |
__weak_func error_t | mpiCheckProbablePrime (const Mpi *a) |
Test whether a number is probable prime. More... | |
error_t | mpiImport (Mpi *r, const uint8_t *data, uint_t length, MpiFormat format) |
Octet string to integer conversion. More... | |
error_t | mpiExport (const Mpi *a, uint8_t *data, uint_t length, MpiFormat format) |
Integer to octet string conversion. More... | |
error_t | mpiAdd (Mpi *r, const Mpi *a, const Mpi *b) |
Multiple precision addition. More... | |
error_t | mpiAddInt (Mpi *r, const Mpi *a, int_t b) |
Add an integer to a multiple precision integer. More... | |
error_t | mpiSub (Mpi *r, const Mpi *a, const Mpi *b) |
Multiple precision subtraction. More... | |
error_t | mpiSubInt (Mpi *r, const Mpi *a, int_t b) |
Subtract an integer from a multiple precision integer. More... | |
error_t | mpiAddAbs (Mpi *r, const Mpi *a, const Mpi *b) |
Helper routine for multiple precision addition. More... | |
error_t | mpiSubAbs (Mpi *r, const Mpi *a, const Mpi *b) |
Helper routine for multiple precision subtraction. More... | |
error_t | mpiShiftLeft (Mpi *r, uint_t n) |
Left shift operation. More... | |
error_t | mpiShiftRight (Mpi *r, uint_t n) |
Right shift operation. More... | |
__weak_func error_t | mpiMul (Mpi *r, const Mpi *a, const Mpi *b) |
Multiple precision multiplication. More... | |
error_t | mpiMulInt (Mpi *r, const Mpi *a, int_t b) |
Multiply a multiple precision integer by an integer. More... | |
error_t | mpiDiv (Mpi *q, Mpi *r, const Mpi *a, const Mpi *b) |
Multiple precision division. More... | |
error_t | mpiDivInt (Mpi *q, Mpi *r, const Mpi *a, int_t b) |
Divide a multiple precision integer by an integer. More... | |
error_t | mpiMod (Mpi *r, const Mpi *a, const Mpi *p) |
Modulo operation. More... | |
error_t | mpiAddMod (Mpi *r, const Mpi *a, const Mpi *b, const Mpi *p) |
Modular addition. More... | |
error_t | mpiSubMod (Mpi *r, const Mpi *a, const Mpi *b, const Mpi *p) |
Modular subtraction. More... | |
__weak_func error_t | mpiMulMod (Mpi *r, const Mpi *a, const Mpi *b, const Mpi *p) |
Modular multiplication. More... | |
__weak_func error_t | mpiInvMod (Mpi *r, const Mpi *a, const Mpi *p) |
Modular inverse. More... | |
__weak_func error_t | mpiExpMod (Mpi *r, const Mpi *a, const Mpi *e, const Mpi *p) |
Modular exponentiation. More... | |
__weak_func error_t | mpiExpModFast (Mpi *r, const Mpi *a, const Mpi *e, const Mpi *p) |
Modular exponentiation (fast calculation) More... | |
__weak_func error_t | mpiExpModRegular (Mpi *r, const Mpi *a, const Mpi *e, const Mpi *p) |
Modular exponentiation (regular calculation) More... | |
error_t | mpiMontgomeryMul (Mpi *r, const Mpi *a, const Mpi *b, uint_t k, const Mpi *p, Mpi *t) |
Montgomery multiplication. More... | |
error_t | mpiMontgomeryRed (Mpi *r, const Mpi *a, uint_t k, const Mpi *p, Mpi *t) |
Montgomery reduction. More... | |
void | mpiMulAccCore (uint_t *r, const uint_t *a, int_t m, const uint_t b) |
Multiply-accumulate operation. More... | |
void | mpiDump (FILE *stream, const char_t *prepend, const Mpi *a) |
Display the contents of a multiple precision integer. More... | |
Detailed Description
MPI (Multiple Precision Integer Arithmetic)
License
SPDX-License-Identifier: GPL-2.0-or-later
Copyright (C) 2010-2024 Oryx Embedded SARL. All rights reserved.
This file is part of CycloneCRYPTO Open.
This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
- Version
- 2.4.4
Definition in file mpi.c.
Macro Definition Documentation
◆ TRACE_LEVEL
Function Documentation
◆ mpiAdd()
◆ mpiAddAbs()
◆ mpiAddInt()
◆ mpiAddMod()
◆ mpiCheckProbablePrime()
◆ mpiComp()
◆ mpiCompAbs()
◆ mpiCompInt()
◆ mpiCopy()
◆ mpiDiv()
◆ mpiDivInt()
◆ mpiDump()
◆ mpiExpMod()
◆ mpiExpModFast()
◆ mpiExpModRegular()
◆ mpiExport()
Integer to octet string conversion.
Converts an integer to an octet string of a specified length
- Parameters
-
[in] a Non-negative integer to be converted [out] data Octet string resulting from the conversion [in] length Intended length of the resulting octet string [in] format Output format
- Returns
- Error code
◆ mpiFree()
void mpiFree | ( | Mpi * | r | ) |
◆ mpiGetBitLength()
◆ mpiGetBitValue()
◆ mpiGetByteLength()
◆ mpiGetLength()
◆ mpiGrow()
◆ mpiImport()
Octet string to integer conversion.
Converts an octet string to a non-negative integer
- Parameters
-
[out] r Non-negative integer resulting from the conversion [in] data Octet string to be converted [in] length Length of the octet string [in] format Input format
- Returns
- Error code
◆ mpiInit()
void mpiInit | ( | Mpi * | r | ) |
◆ mpiInvMod()
◆ mpiMod()
◆ mpiMontgomeryMul()
error_t mpiMontgomeryMul | ( | Mpi * | r, |
const Mpi * | a, | ||
const Mpi * | b, | ||
uint_t | k, | ||
const Mpi * | p, | ||
Mpi * | t | ||
) |
Montgomery multiplication.
- Parameters
-
[out] r Resulting integer R = A * B / 2^k mod P [in] a An integer A such as 0 <= A < 2^k [in] b An integer B such as 0 <= B < 2^k [in] k An integer k such as P < 2^k [in] p Modulus P [in] t An preallocated integer T (for internal operation)
- Returns
- Error code