Multi-precision integer library. More...
#include <stdio.h>#include <string.h>#include "config.h"#include <inttypes.h>

Go to the source code of this file.
Data Structures | |
| struct | mpi |
| MPI structure. More... | |
Defines | |
| #define | POLARSSL_ERR_MPI_FILE_IO_ERROR -0x0002 |
| An error occurred while reading from or writing to a file. | |
| #define | POLARSSL_ERR_MPI_BAD_INPUT_DATA -0x0004 |
| Bad input parameters to function. | |
| #define | POLARSSL_ERR_MPI_INVALID_CHARACTER -0x0006 |
| There is an invalid character in the digit string. | |
| #define | POLARSSL_ERR_MPI_BUFFER_TOO_SMALL -0x0008 |
| The buffer is too small to write to. | |
| #define | POLARSSL_ERR_MPI_NEGATIVE_VALUE -0x000A |
| The input arguments are negative or result in illegal output. | |
| #define | POLARSSL_ERR_MPI_DIVISION_BY_ZERO -0x000C |
| The input argument for division is zero, which is not allowed. | |
| #define | POLARSSL_ERR_MPI_NOT_ACCEPTABLE -0x000E |
| The input arguments are not acceptable. | |
| #define | POLARSSL_ERR_MPI_MALLOC_FAILED -0x0010 |
| Memory allocation failed. | |
| #define | MPI_CHK(f) if( ( ret = f ) != 0 ) goto cleanup |
| #define | POLARSSL_MPI_MAX_LIMBS 10000 |
| #define | POLARSSL_MPI_WINDOW_SIZE 6 |
| Maximum windows size used. | |
| #define | POLARSSL_MPI_MAX_SIZE 512 |
| Maximum number of bytes for usable MPIs. | |
| #define | POLARSSL_MPI_MAX_BITS ( 8 * POLARSSL_MPI_MAX_SIZE ) |
| Maximum number of bits for usable MPIs. | |
| #define | POLARSSL_MPI_MAX_BITS_SCALE100 ( 100 * POLARSSL_MPI_MAX_BITS ) |
| #define | LN_2_DIV_LN_10_SCALE100 332 |
| #define | POLARSSL_MPI_RW_BUFFER_SIZE ( ((POLARSSL_MPI_MAX_BITS_SCALE100 + LN_2_DIV_LN_10_SCALE100 - 1) / LN_2_DIV_LN_10_SCALE100) + 10 + 6 ) |
| #define | POLARSSL_HAVE_INT32 |
Typedefs | |
| typedef int32_t | t_sint |
| typedef uint32_t | t_uint |
Functions | |
| void | mpi_init (mpi *X) |
| Initialize one MPI. | |
| void | mpi_free (mpi *X) |
| Unallocate one MPI. | |
| int | mpi_grow (mpi *X, size_t nblimbs) |
| Enlarge to the specified number of limbs. | |
| int | mpi_copy (mpi *X, const mpi *Y) |
| Copy the contents of Y into X. | |
| void | mpi_swap (mpi *X, mpi *Y) |
| Swap the contents of X and Y. | |
| int | mpi_lset (mpi *X, t_sint z) |
| Set value from integer. | |
| int | mpi_get_bit (const mpi *X, size_t pos) |
| Get a specific bit from X. | |
| int | mpi_set_bit (mpi *X, size_t pos, unsigned char val) |
| Set a bit of X to a specific value of 0 or 1. | |
| size_t | mpi_lsb (const mpi *X) |
| Return the number of zero-bits before the least significant '1' bit. | |
| size_t | mpi_msb (const mpi *X) |
| Return the number of bits up to and including the most significant '1' bit'. | |
| size_t | mpi_size (const mpi *X) |
| Return the total size in bytes. | |
| int | mpi_read_string (mpi *X, int radix, const char *s) |
| Import from an ASCII string. | |
| int | mpi_write_string (const mpi *X, int radix, char *s, size_t *slen) |
| Export into an ASCII string. | |
| int | mpi_read_binary (mpi *X, const unsigned char *buf, size_t buflen) |
| Import X from unsigned binary data, big endian. | |
| int | mpi_write_binary (const mpi *X, unsigned char *buf, size_t buflen) |
| Export X into unsigned binary data, big endian. | |
| int | mpi_shift_l (mpi *X, size_t count) |
| Left-shift: X <<= count. | |
| int | mpi_shift_r (mpi *X, size_t count) |
| Right-shift: X >>= count. | |
| int | mpi_cmp_abs (const mpi *X, const mpi *Y) |
| Compare unsigned values. | |
| int | mpi_cmp_mpi (const mpi *X, const mpi *Y) |
| Compare signed values. | |
| int | mpi_cmp_int (const mpi *X, t_sint z) |
| Compare signed values. | |
| int | mpi_add_abs (mpi *X, const mpi *A, const mpi *B) |
| Unsigned addition: X = |A| + |B|. | |
| int | mpi_sub_abs (mpi *X, const mpi *A, const mpi *B) |
| Unsigned subtraction: X = |A| - |B|. | |
| int | mpi_add_mpi (mpi *X, const mpi *A, const mpi *B) |
| Signed addition: X = A + B. | |
| int | mpi_sub_mpi (mpi *X, const mpi *A, const mpi *B) |
| Signed subtraction: X = A - B. | |
| int | mpi_add_int (mpi *X, const mpi *A, t_sint b) |
| Signed addition: X = A + b. | |
| int | mpi_sub_int (mpi *X, const mpi *A, t_sint b) |
| Signed subtraction: X = A - b. | |
| int | mpi_mul_mpi (mpi *X, const mpi *A, const mpi *B) |
| Baseline multiplication: X = A * B. | |
| int | mpi_mul_int (mpi *X, const mpi *A, t_sint b) |
| Baseline multiplication: X = A * b Note: b is an unsigned integer type, thus Negative values of b are ignored. | |
| int | mpi_div_mpi (mpi *Q, mpi *R, const mpi *A, const mpi *B) |
| Division by mpi: A = Q * B + R. | |
| int | mpi_div_int (mpi *Q, mpi *R, const mpi *A, t_sint b) |
| Division by int: A = Q * b + R. | |
| int | mpi_mod_mpi (mpi *R, const mpi *A, const mpi *B) |
| Modulo: R = A mod B. | |
| int | mpi_mod_int (t_uint *r, const mpi *A, t_sint b) |
| Modulo: r = A mod b. | |
| int | mpi_exp_mod (mpi *X, const mpi *A, const mpi *E, const mpi *N, mpi *_RR) |
| Sliding-window exponentiation: X = A^E mod N. | |
| int | mpi_fill_random (mpi *X, size_t size, int(*f_rng)(void *, unsigned char *, size_t), void *p_rng) |
| Fill an MPI X with size bytes of random. | |
| int | mpi_gcd (mpi *G, const mpi *A, const mpi *B) |
| Greatest common divisor: G = gcd(A, B). | |
| int | mpi_inv_mod (mpi *X, const mpi *A, const mpi *N) |
| Modular inverse: X = A^-1 mod N. | |
| int | mpi_is_prime (mpi *X, int(*f_rng)(void *, unsigned char *, size_t), void *p_rng) |
| Miller-Rabin primality test. | |
| int | mpi_gen_prime (mpi *X, size_t nbits, int dh_flag, int(*f_rng)(void *, unsigned char *, size_t), void *p_rng) |
| Prime number generation. | |
| int | mpi_self_test (int verbose) |
| Checkup routine. | |
Multi-precision integer library.
Copyright (C) 2006-2013, Brainspark B.V.
This file is part of PolarSSL (http://www.polarssl.org) Lead Maintainer: Paul Bakker <polarssl_maintainer at polarssl.org>
All rights reserved.
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.
Definition in file bignum.h.
| #define MPI_CHK | ( | f | ) | if( ( ret = f ) != 0 ) goto cleanup |
Definition at line 61 of file bignum.h.
Referenced by dhm_calc_secret(), dhm_make_params(), dhm_make_public(), dhm_update_blinding(), ecdh_compute_shared(), ecdsa_sign(), ecdsa_verify(), ecp_add(), ecp_add_mixed(), ecp_check_pubkey(), ecp_copy(), ecp_double_jac(), ecp_group_read_string(), ecp_group_read_string_gen(), ecp_mod_p192(), ecp_mod_p521(), ecp_modp(), ecp_mul(), ecp_normalize(), ecp_normalize_many(), ecp_point_read_binary(), ecp_point_read_string(), ecp_point_write_binary(), ecp_precompute(), ecp_randomize_coordinates(), ecp_self_test(), ecp_set_zero(), ecp_sub(), ecp_w_naf_fixed(), fix_negative(), mpi_add_abs(), mpi_add_mpi(), mpi_copy(), mpi_div_mpi(), mpi_exp_mod(), mpi_fill_random(), mpi_gcd(), mpi_gen_prime(), mpi_inv_mod(), mpi_is_prime(), mpi_lset(), mpi_mod_mpi(), mpi_mul_mpi(), mpi_read_binary(), mpi_read_string(), mpi_self_test(), mpi_set_bit(), mpi_shift_l(), mpi_sub_abs(), mpi_sub_mpi(), mpi_write_file(), mpi_write_hlp(), mpi_write_string(), rsa_check_privkey(), rsa_copy(), rsa_gen_key(), rsa_prepare_blinding(), rsa_private(), and rsa_public().
| #define POLARSSL_ERR_MPI_BAD_INPUT_DATA -0x0004 |
Bad input parameters to function.
Definition at line 53 of file bignum.h.
Referenced by mpi_exp_mod(), mpi_gen_prime(), mpi_inv_mod(), mpi_read_string(), mpi_set_bit(), mpi_write_hlp(), mpi_write_string(), and polarssl_strerror().
| #define POLARSSL_ERR_MPI_BUFFER_TOO_SMALL -0x0008 |
The buffer is too small to write to.
Definition at line 55 of file bignum.h.
Referenced by mpi_read_file(), mpi_write_binary(), mpi_write_string(), and polarssl_strerror().
| #define POLARSSL_ERR_MPI_DIVISION_BY_ZERO -0x000C |
The input argument for division is zero, which is not allowed.
Definition at line 57 of file bignum.h.
Referenced by mpi_div_mpi(), mpi_mod_int(), and polarssl_strerror().
| #define POLARSSL_ERR_MPI_FILE_IO_ERROR -0x0002 |
An error occurred while reading from or writing to a file.
Definition at line 52 of file bignum.h.
Referenced by mpi_read_file(), mpi_write_file(), and polarssl_strerror().
| #define POLARSSL_ERR_MPI_INVALID_CHARACTER -0x0006 |
There is an invalid character in the digit string.
Definition at line 54 of file bignum.h.
Referenced by mpi_get_digit(), and polarssl_strerror().
| #define POLARSSL_ERR_MPI_MALLOC_FAILED -0x0010 |
Memory allocation failed.
Definition at line 59 of file bignum.h.
Referenced by mpi_grow(), and polarssl_strerror().
| #define POLARSSL_ERR_MPI_NEGATIVE_VALUE -0x000A |
The input arguments are negative or result in illegal output.
Definition at line 56 of file bignum.h.
Referenced by mpi_mod_int(), mpi_mod_mpi(), mpi_sub_abs(), and polarssl_strerror().
| #define POLARSSL_ERR_MPI_NOT_ACCEPTABLE -0x000E |
The input arguments are not acceptable.
Definition at line 58 of file bignum.h.
Referenced by dhm_update_blinding(), mpi_gen_prime(), mpi_inv_mod(), mpi_is_prime(), and polarssl_strerror().
| #define POLARSSL_MPI_MAX_BITS ( 8 * POLARSSL_MPI_MAX_SIZE ) |
Maximum number of bits for usable MPIs.
Definition at line 91 of file bignum.h.
Referenced by mpi_gen_prime(), and rsa_check_pubkey().
| #define POLARSSL_MPI_MAX_BITS_SCALE100 ( 100 * POLARSSL_MPI_MAX_BITS ) |
| #define POLARSSL_MPI_MAX_LIMBS 10000 |
Definition at line 66 of file bignum.h.
Referenced by mpi_grow().
| #define POLARSSL_MPI_MAX_SIZE 512 |
Maximum number of bytes for usable MPIs.
Definition at line 87 of file bignum.h.
Referenced by rsa_rsaes_oaep_decrypt(), rsa_rsaes_pkcs1_v15_decrypt(), rsa_rsassa_pkcs1_v15_verify(), rsa_rsassa_pss_verify(), ssl_parse_client_key_exchange(), ssl_write_client_key_exchange(), x509write_crt_der(), x509write_crt_set_authority_key_identifier(), x509write_crt_set_subject_key_identifier(), and x509write_csr_der().
| #define POLARSSL_MPI_RW_BUFFER_SIZE ( ((POLARSSL_MPI_MAX_BITS_SCALE100 + LN_2_DIV_LN_10_SCALE100 - 1) / LN_2_DIV_LN_10_SCALE100) + 10 + 6 ) |
Definition at line 113 of file bignum.h.
Referenced by mpi_read_file(), and mpi_write_file().
| #define POLARSSL_MPI_WINDOW_SIZE 6 |
Unsigned addition: X = |A| + |B|.
| X | Destination MPI | |
| A | Left-hand MPI | |
| B | Right-hand MPI |
Definition at line 741 of file bignum.c.
References MPI_CHK, mpi_copy(), mpi_grow(), mpi::n, mpi::p, and mpi::s.
Referenced by ecp_mod_p521(), mpi_add_mpi(), and mpi_sub_mpi().
Signed addition: X = A + b.
| X | Destination MPI | |
| A | Left-hand MPI | |
| b | The integer value to add |
Definition at line 919 of file bignum.c.
References mpi_add_mpi(), mpi::n, mpi::p, and mpi::s.
Referenced by ecp_group_read_string(), ecp_mul(), mpi_gen_prime(), and mpi_read_string().
Signed addition: X = A + B.
| X | Destination MPI | |
| A | Left-hand MPI | |
| B | Right-hand MPI |
Definition at line 857 of file bignum.c.
References mpi_add_abs(), MPI_CHK, mpi_cmp_abs(), mpi_sub_abs(), and mpi::s.
Referenced by ecdsa_sign(), ecp_check_pubkey(), ecp_double_jac(), ecp_modp(), mpi_add_int(), mpi_div_mpi(), mpi_exp_mod(), mpi_inv_mod(), mpi_mod_mpi(), and rsa_private().
Compare unsigned values.
| X | Left-hand MPI | |
| Y | Right-hand MPI |
Definition at line 662 of file bignum.c.
References mpi::n, and mpi::p.
Referenced by mpi_add_mpi(), mpi_div_mpi(), mpi_montmul(), mpi_sub_abs(), and mpi_sub_mpi().
Compare signed values.
| X | Left-hand MPI | |
| z | The integer value to compare to |
Definition at line 725 of file bignum.c.
References mpi_cmp_mpi(), mpi::n, mpi::p, and mpi::s.
Referenced by dhm_make_params(), dhm_make_public(), dhm_update_blinding(), ecdsa_sign(), ecdsa_verify(), ecp_add_mixed(), ecp_check_privkey(), ecp_check_pubkey(), ecp_gen_keypair(), ecp_is_zero(), ecp_modp(), ecp_mul(), ecp_normalize(), ecp_point_write_binary(), ecp_randomize_coordinates(), ecp_w_naf_fixed(), mpi_div_mpi(), mpi_exp_mod(), mpi_gcd(), mpi_inv_mod(), mpi_is_prime(), mpi_mod_mpi(), mpi_self_test(), mpi_write_hlp(), rsa_check_privkey(), rsa_gen_key(), and rsa_prepare_blinding().
Compare signed values.
| X | Left-hand MPI | |
| Y | Right-hand MPI |
Definition at line 692 of file bignum.c.
References mpi::n, mpi::p, and mpi::s.
Referenced by dhm_check_range(), dhm_make_params(), dhm_make_public(), dhm_update_blinding(), ecdsa_verify(), ecp_check_privkey(), ecp_check_pubkey(), ecp_gen_keypair(), ecp_modp(), ecp_mul(), ecp_randomize_coordinates(), mpi_cmp_int(), mpi_div_mpi(), mpi_exp_mod(), mpi_gcd(), mpi_inv_mod(), mpi_is_prime(), mpi_mod_mpi(), mpi_self_test(), rsa_check_privkey(), rsa_gen_key(), rsa_private(), and rsa_public().
Copy the contents of Y into X.
| X | Destination MPI | |
| Y | Source MPI |
Definition at line 125 of file bignum.c.
References ciL, MPI_CHK, mpi_free(), mpi_grow(), mpi::n, mpi::p, and mpi::s.
Referenced by dhm_calc_secret(), dhm_update_blinding(), ecdh_compute_shared(), ecdsa_from_keypair(), ecp_add_mixed(), ecp_copy(), ecp_double_jac(), ecp_mul(), ecp_normalize_many(), ecp_w_naf_fixed(), mpi_add_abs(), mpi_div_mpi(), mpi_exp_mod(), mpi_gcd(), mpi_inv_mod(), mpi_is_prime(), mpi_mul_mpi(), mpi_sub_abs(), mpi_write_string(), rsa_copy(), rsa_prepare_blinding(), ssl_set_dh_param_ctx(), ssl_write_server_key_exchange(), and x509write_crt_set_serial().
Division by int: A = Q * b + R.
| Q | Destination MPI for the quotient | |
| R | Destination MPI for the rest value | |
| A | Left-hand MPI | |
| b | Integer to divide by |
Definition at line 1240 of file bignum.c.
References mpi_div_mpi(), mpi::n, mpi::p, and mpi::s.
Referenced by mpi_write_hlp().
Division by mpi: A = Q * B + R.
| Q | Destination MPI for the quotient | |
| R | Destination MPI for the rest value | |
| A | Left-hand MPI | |
| B | Right-hand MPI |
Definition at line 1076 of file bignum.c.
References biH, biL, mpi_add_mpi(), MPI_CHK, mpi_cmp_abs(), mpi_cmp_int(), mpi_cmp_mpi(), mpi_copy(), mpi_free(), mpi_grow(), mpi_init(), mpi_lset(), mpi_msb(), mpi_mul_int(), mpi_shift_l(), mpi_shift_r(), mpi_sub_mpi(), mpi::n, mpi::p, POLARSSL_ERR_MPI_DIVISION_BY_ZERO, and mpi::s.
Referenced by mpi_div_int(), mpi_mod_mpi(), mpi_self_test(), and rsa_check_privkey().
Sliding-window exponentiation: X = A^E mod N.
| X | Destination MPI | |
| A | Left-hand MPI | |
| E | Exponent MPI | |
| N | Modular MPI | |
| _RR | Speed-up MPI used for recalculations |
Definition at line 1405 of file bignum.c.
References biL, mpi_add_mpi(), MPI_CHK, mpi_cmp_int(), mpi_cmp_mpi(), mpi_copy(), mpi_free(), mpi_grow(), mpi_init(), mpi_lset(), mpi_mod_mpi(), mpi_montg_init(), mpi_montmul(), mpi_montred(), mpi_msb(), mpi_shift_l(), mpi::n, mpi::p, POLARSSL_ERR_MPI_BAD_INPUT_DATA, POLARSSL_MPI_WINDOW_SIZE, and mpi::s.
Referenced by dhm_calc_secret(), dhm_make_params(), dhm_make_public(), dhm_update_blinding(), mpi_is_prime(), mpi_self_test(), rsa_prepare_blinding(), rsa_private(), and rsa_public().
| int mpi_fill_random | ( | mpi * | X, | |
| size_t | size, | |||
| int(*)(void *, unsigned char *, size_t) | f_rng, | |||
| void * | p_rng | |||
| ) |
Fill an MPI X with size bytes of random.
| X | Destination MPI | |
| size | Size in bytes | |
| f_rng | RNG function | |
| p_rng | RNG parameter |
Definition at line 1662 of file bignum.c.
References CHARS_TO_LIMBS, MPI_CHK, mpi_grow(), mpi_lset(), and mpi::p.
Referenced by dhm_make_params(), dhm_make_public(), dhm_update_blinding(), ecp_gen_keypair(), ecp_randomize_coordinates(), mpi_gen_prime(), mpi_is_prime(), and rsa_prepare_blinding().
| void mpi_free | ( | mpi * | X | ) |
Unallocate one MPI.
| X | One MPI to unallocate. |
Definition at line 75 of file bignum.c.
References ciL, mpi::n, mpi::p, polarssl_free, and mpi::s.
Referenced by dhm_calc_secret(), dhm_check_range(), dhm_free(), ecdh_free(), ecdsa_free(), ecdsa_sign(), ecdsa_verify(), ecp_add_mixed(), ecp_check_pubkey(), ecp_double_jac(), ecp_group_free(), ecp_keypair_free(), ecp_mul(), ecp_normalize(), ecp_normalize_many(), ecp_point_free(), ecp_randomize_coordinates(), ecp_self_test(), ecp_w_naf_fixed(), mpi_copy(), mpi_div_mpi(), mpi_exp_mod(), mpi_gcd(), mpi_gen_prime(), mpi_inv_mod(), mpi_is_prime(), mpi_mul_mpi(), mpi_read_string(), mpi_self_test(), mpi_sub_abs(), mpi_write_string(), rsa_check_privkey(), rsa_free(), rsa_gen_key(), rsa_private(), rsa_public(), ssl_free(), and x509write_crt_free().
Greatest common divisor: G = gcd(A, B).
| G | Destination MPI | |
| A | Left-hand MPI | |
| B | Right-hand MPI |
Definition at line 1613 of file bignum.c.
References MPI_CHK, mpi_cmp_int(), mpi_cmp_mpi(), mpi_copy(), mpi_free(), mpi_init(), mpi_lsb(), mpi_shift_l(), mpi_shift_r(), mpi_sub_abs(), and mpi::s.
Referenced by mpi_inv_mod(), mpi_self_test(), rsa_check_privkey(), rsa_gen_key(), and rsa_prepare_blinding().
| int mpi_gen_prime | ( | mpi * | X, | |
| size_t | nbits, | |||
| int | dh_flag, | |||
| int(*)(void *, unsigned char *, size_t) | f_rng, | |||
| void * | p_rng | |||
| ) |
Prime number generation.
| X | Destination MPI | |
| nbits | Required size of X in bits ( 3 <= nbits <= POLARSSL_MPI_MAX_BITS ) | |
| dh_flag | If 1, then (X-1)/2 will be prime too | |
| f_rng | RNG function | |
| p_rng | RNG parameter |
Definition at line 1920 of file bignum.c.
References BITS_TO_LIMBS, ciL, mpi_add_int(), MPI_CHK, mpi_fill_random(), mpi_free(), mpi_init(), mpi_is_prime(), mpi_msb(), mpi_shift_l(), mpi_shift_r(), mpi_sub_int(), mpi::p, POLARSSL_ERR_MPI_BAD_INPUT_DATA, POLARSSL_ERR_MPI_NOT_ACCEPTABLE, and POLARSSL_MPI_MAX_BITS.
Referenced by rsa_gen_key().
| int mpi_get_bit | ( | const mpi * | X, | |
| size_t | pos | |||
| ) |
| int mpi_grow | ( | mpi * | X, | |
| size_t | nblimbs | |||
| ) |
Enlarge to the specified number of limbs.
| X | MPI to grow | |
| nblimbs | The target number of limbs |
Definition at line 94 of file bignum.c.
References ciL, mpi::n, mpi::p, POLARSSL_ERR_MPI_MALLOC_FAILED, polarssl_free, polarssl_malloc, and POLARSSL_MPI_MAX_LIMBS.
Referenced by ecp_mod_p192(), mpi_add_abs(), mpi_copy(), mpi_div_mpi(), mpi_exp_mod(), mpi_fill_random(), mpi_lset(), mpi_mul_mpi(), mpi_read_binary(), mpi_read_string(), mpi_set_bit(), and mpi_shift_l().
| void mpi_init | ( | mpi * | X | ) |
Initialize one MPI.
| X | One MPI to initialize. |
Definition at line 62 of file bignum.c.
References mpi::n, mpi::p, and mpi::s.
Referenced by dhm_calc_secret(), dhm_check_range(), ecdsa_init(), ecdsa_sign(), ecdsa_verify(), ecp_add_mixed(), ecp_check_pubkey(), ecp_double_jac(), ecp_keypair_init(), ecp_mul(), ecp_normalize(), ecp_normalize_many(), ecp_point_init(), ecp_randomize_coordinates(), ecp_self_test(), ecp_w_naf_fixed(), mpi_div_mpi(), mpi_exp_mod(), mpi_gcd(), mpi_gen_prime(), mpi_inv_mod(), mpi_is_prime(), mpi_mul_mpi(), mpi_read_string(), mpi_self_test(), mpi_sub_abs(), mpi_write_string(), rsa_check_privkey(), rsa_gen_key(), rsa_private(), rsa_public(), and x509write_crt_init().
Modular inverse: X = A^-1 mod N.
| X | Destination MPI | |
| A | Left-hand MPI | |
| N | Right-hand MPI |
Definition at line 1680 of file bignum.c.
References mpi_add_mpi(), MPI_CHK, mpi_cmp_int(), mpi_cmp_mpi(), mpi_copy(), mpi_free(), mpi_gcd(), mpi_init(), mpi_lset(), mpi_mod_mpi(), mpi_shift_r(), mpi_sub_mpi(), mpi::p, POLARSSL_ERR_MPI_BAD_INPUT_DATA, and POLARSSL_ERR_MPI_NOT_ACCEPTABLE.
Referenced by dhm_update_blinding(), ecdsa_sign(), ecdsa_verify(), ecp_normalize(), ecp_normalize_many(), mpi_self_test(), rsa_check_privkey(), rsa_gen_key(), and rsa_prepare_blinding().
| int mpi_is_prime | ( | mpi * | X, | |
| int(*)(void *, unsigned char *, size_t) | f_rng, | |||
| void * | p_rng | |||
| ) |
Miller-Rabin primality test.
| X | MPI to check | |
| f_rng | RNG function | |
| p_rng | RNG parameter |
Definition at line 1802 of file bignum.c.
References A, ciL, MPI_CHK, mpi_cmp_int(), mpi_cmp_mpi(), mpi_copy(), mpi_exp_mod(), mpi_fill_random(), mpi_free(), mpi_init(), mpi_lsb(), mpi_mod_int(), mpi_mod_mpi(), mpi_msb(), mpi_mul_mpi(), mpi_shift_r(), mpi_sub_int(), mpi::n, mpi::p, POLARSSL_ERR_MPI_NOT_ACCEPTABLE, R, and mpi::s.
Referenced by mpi_gen_prime().
| size_t mpi_lsb | ( | const mpi * | X | ) |
Set value from integer.
| X | MPI to set | |
| z | Value to use |
Definition at line 171 of file bignum.c.
References ciL, MPI_CHK, mpi_grow(), mpi::n, mpi::p, and mpi::s.
Referenced by dhm_check_range(), dhm_update_blinding(), ecp_normalize(), ecp_normalize_many(), ecp_point_read_binary(), ecp_point_read_string(), ecp_self_test(), ecp_set_zero(), mpi_div_mpi(), mpi_exp_mod(), mpi_fill_random(), mpi_inv_mod(), mpi_mul_mpi(), mpi_read_binary(), mpi_read_string(), mpi_self_test(), mpi_shift_r(), and rsa_gen_key().
Modulo: r = A mod b.
| r | Destination t_uint | |
| A | Left-hand MPI | |
| b | Integer to divide by |
Definition at line 1279 of file bignum.c.
References biH, mpi::n, mpi::p, POLARSSL_ERR_MPI_DIVISION_BY_ZERO, POLARSSL_ERR_MPI_NEGATIVE_VALUE, and mpi::s.
Referenced by mpi_is_prime(), and mpi_write_hlp().
Modulo: R = A mod B.
| R | Destination MPI for the rest value | |
| A | Left-hand MPI | |
| B | Right-hand MPI |
Definition at line 1256 of file bignum.c.
References mpi_add_mpi(), MPI_CHK, mpi_cmp_int(), mpi_cmp_mpi(), mpi_div_mpi(), mpi_sub_mpi(), and POLARSSL_ERR_MPI_NEGATIVE_VALUE.
Referenced by dhm_calc_secret(), dhm_update_blinding(), ecdsa_sign(), ecdsa_verify(), ecp_modp(), mpi_exp_mod(), mpi_inv_mod(), mpi_is_prime(), rsa_check_privkey(), rsa_gen_key(), rsa_prepare_blinding(), and rsa_private().
| size_t mpi_msb | ( | const mpi * | X | ) |
Return the number of bits up to and including the most significant '1' bit'.
Note: Thus also the one-based index of the most significant '1' bit
| X | MPI to use |
Definition at line 242 of file bignum.c.
References biL, mpi::n, and mpi::p.
Referenced by d2i_RSA_PUBKEY(), ecp_group_read_string_gen(), ecp_modp(), ecp_mul(), mpi_div_mpi(), mpi_exp_mod(), mpi_gen_prime(), mpi_is_prime(), mpi_shift_l(), mpi_size(), mpi_write_string(), rsa_check_pubkey(), rsa_gen_key(), rsa_rsassa_pss_sign(), and rsa_rsassa_pss_verify().
Baseline multiplication: X = A * b Note: b is an unsigned integer type, thus Negative values of b are ignored.
| X | Destination MPI | |
| A | Left-hand MPI | |
| b | The integer value to multiply with |
Definition at line 1060 of file bignum.c.
References mpi_mul_mpi(), mpi::n, mpi::p, and mpi::s.
Referenced by ecp_add_mixed(), ecp_double_jac(), mpi_div_mpi(), and mpi_read_string().
Baseline multiplication: X = A * B.
| X | Destination MPI | |
| A | Left-hand MPI | |
| B | Right-hand MPI |
Definition at line 1023 of file bignum.c.
References MPI_CHK, mpi_copy(), mpi_free(), mpi_grow(), mpi_init(), mpi_lset(), mpi_mul_hlp(), mpi::n, mpi::p, and mpi::s.
Referenced by dhm_calc_secret(), dhm_update_blinding(), ecdsa_sign(), ecdsa_verify(), ecp_add_mixed(), ecp_check_pubkey(), ecp_double_jac(), ecp_normalize(), ecp_normalize_many(), ecp_randomize_coordinates(), mpi_is_prime(), mpi_mul_int(), mpi_self_test(), rsa_check_privkey(), rsa_gen_key(), rsa_prepare_blinding(), and rsa_private().
| int mpi_read_binary | ( | mpi * | X, | |
| const unsigned char * | buf, | |||
| size_t | buflen | |||
| ) |
Import X from unsigned binary data, big endian.
| X | Destination MPI | |
| buf | Input buffer | |
| buflen | Input buffer size |
Definition at line 526 of file bignum.c.
References CHARS_TO_LIMBS, ciL, MPI_CHK, mpi_grow(), mpi_lset(), and mpi::p.
Referenced by asn1_get_mpi(), d2i_RSA_PUBKEY(), derive_mpi(), dhm_read_bignum(), dhm_read_public(), ecp_point_read_binary(), pk_parse_key_sec1_der(), rsa_private(), and rsa_public().
| int mpi_read_string | ( | mpi * | X, | |
| int | radix, | |||
| const char * | s | |||
| ) |
Import from an ASCII string.
| X | Destination MPI | |
| radix | Input numeric base | |
| s | Null-terminated string buffer |
Definition at line 285 of file bignum.c.
References BITS_TO_LIMBS, ciL, mpi_add_int(), MPI_CHK, mpi_free(), mpi_get_digit(), mpi_grow(), mpi_init(), mpi_lset(), mpi_mul_int(), mpi_sub_int(), mpi::p, POLARSSL_ERR_MPI_BAD_INPUT_DATA, mpi::s, and slen.
Referenced by ecp_group_read_string_gen(), ecp_point_read_string(), ecp_self_test(), mpi_read_file(), mpi_self_test(), rsa_self_test(), ssl_init(), and ssl_set_dh_param().
| int mpi_self_test | ( | int | verbose | ) |
Checkup routine.
Definition at line 2001 of file bignum.c.
References A, GCD_PAIR_COUNT, MPI_CHK, mpi_cmp_int(), mpi_cmp_mpi(), mpi_div_mpi(), mpi_exp_mod(), mpi_free(), mpi_gcd(), mpi_init(), mpi_inv_mod(), mpi_lset(), mpi_mul_mpi(), and mpi_read_string().
| int mpi_set_bit | ( | mpi * | X, | |
| size_t | pos, | |||
| unsigned char | val | |||
| ) |
Set a bit of X to a specific value of 0 or 1.
| X | MPI to use | |
| pos | Zero-based index of the bit in X | |
| val | The value to set the bit to (0 or 1) |
Definition at line 200 of file bignum.c.
References biL, MPI_CHK, mpi_grow(), mpi::n, mpi::p, and POLARSSL_ERR_MPI_BAD_INPUT_DATA.
| int mpi_shift_l | ( | mpi * | X, | |
| size_t | count | |||
| ) |
Left-shift: X <<= count.
| X | MPI to shift | |
| count | Amount to shift |
Definition at line 569 of file bignum.c.
References biL, BITS_TO_LIMBS, MPI_CHK, mpi_grow(), mpi_msb(), mpi::n, and mpi::p.
Referenced by mpi_div_mpi(), mpi_exp_mod(), mpi_gcd(), and mpi_gen_prime().
| int mpi_shift_r | ( | mpi * | X, | |
| size_t | count | |||
| ) |
Right-shift: X >>= count.
| X | MPI to shift | |
| count | Amount to shift |
Definition at line 619 of file bignum.c.
References biL, mpi_lset(), mpi::n, and mpi::p.
Referenced by dhm_make_params(), dhm_make_public(), dhm_update_blinding(), ecp_gen_keypair(), ecp_mod_p521(), ecp_randomize_coordinates(), ecp_w_naf_fixed(), mpi_div_mpi(), mpi_gcd(), mpi_gen_prime(), mpi_inv_mod(), and mpi_is_prime().
| size_t mpi_size | ( | const mpi * | X | ) |
Return the total size in bytes.
| X | MPI to use |
Definition at line 260 of file bignum.c.
References mpi_msb().
Referenced by asn1_write_mpi(), dhm_calc_secret(), dhm_make_params(), dhm_read_params(), dhm_update_blinding(), ecdh_calc_secret(), ecp_point_read_binary(), ecp_point_write_binary(), mpi_write_binary(), pk_get_rsapubkey(), pk_parse_key_pkcs1_der(), ssl_parse_client_key_exchange(), ssl_write_client_key_exchange(), and ssl_write_server_key_exchange().
Unsigned subtraction: X = |A| - |B|.
| X | Destination MPI | |
| A | Left-hand MPI | |
| B | Right-hand MPI |
Definition at line 814 of file bignum.c.
References MPI_CHK, mpi_cmp_abs(), mpi_copy(), mpi_free(), mpi_init(), mpi_sub_hlp(), mpi::n, mpi::p, POLARSSL_ERR_MPI_NEGATIVE_VALUE, and mpi::s.
Referenced by ecp_modp(), fix_negative(), mpi_add_mpi(), mpi_gcd(), and mpi_sub_mpi().
Signed subtraction: X = A - b.
| X | Destination MPI | |
| A | Left-hand MPI | |
| b | The integer value to subtract |
Definition at line 935 of file bignum.c.
References mpi_sub_mpi(), mpi::n, mpi::p, and mpi::s.
Referenced by dhm_check_range(), mpi_gen_prime(), mpi_is_prime(), mpi_read_string(), rsa_check_privkey(), and rsa_gen_key().
Signed subtraction: X = A - B.
| X | Destination MPI | |
| A | Left-hand MPI | |
| B | Right-hand MPI |
Definition at line 888 of file bignum.c.
References mpi_add_abs(), MPI_CHK, mpi_cmp_abs(), mpi_sub_abs(), and mpi::s.
Referenced by ecp_add_mixed(), ecp_double_jac(), mpi_div_mpi(), mpi_inv_mod(), mpi_mod_mpi(), mpi_sub_int(), and rsa_private().
Swap the contents of X and Y.
| X | First MPI value | |
| Y | Second MPI value |
Definition at line 159 of file bignum.c.
Referenced by rsa_gen_key().
| int mpi_write_binary | ( | const mpi * | X, | |
| unsigned char * | buf, | |||
| size_t | buflen | |||
| ) |
Export X into unsigned binary data, big endian.
| X | Source MPI | |
| buf | Output buffer | |
| buflen | Output buffer size |
Definition at line 549 of file bignum.c.
References ciL, mpi_size(), mpi::p, and POLARSSL_ERR_MPI_BUFFER_TOO_SMALL.
Referenced by asn1_write_mpi(), dhm_calc_secret(), dhm_make_public(), ecdh_calc_secret(), ecp_point_write_binary(), rsa_private(), and rsa_public().
| int mpi_write_string | ( | const mpi * | X, | |
| int | radix, | |||
| char * | s, | |||
| size_t * | slen | |||
| ) |
Export into an ASCII string.
| X | Source MPI | |
| radix | Output numeric base | |
| s | String buffer | |
| slen | String buffer size |
Definition at line 381 of file bignum.c.
References ciL, MPI_CHK, mpi_copy(), mpi_free(), mpi_init(), mpi_msb(), mpi_write_hlp(), mpi::n, mpi::p, POLARSSL_ERR_MPI_BAD_INPUT_DATA, POLARSSL_ERR_MPI_BUFFER_TOO_SMALL, and mpi::s.
Referenced by mpi_write_file().
1.6.1