NCBI C++ ToolKit
Macros | Functions | Variables
ecp_curves.c File Reference
#include "common.h"
#include "mbedtls/ecp.h"
#include "mbedtls/platform_util.h"
#include "mbedtls/error.h"
#include "mbedtls/bn_mul.h"
#include "ecp_invasive.h"
#include <string.h>
+ Include dependency graph for ecp_curves.c:

Go to the source code of this file.

Go to the SVN repository for this file.

Macros

#define ECP_VALIDATE_RET(cond)    MBEDTLS_INTERNAL_VALIDATE_RET(cond, MBEDTLS_ERR_ECP_BAD_INPUT_DATA)
 
#define ECP_VALIDATE(cond)    MBEDTLS_INTERNAL_VALIDATE(cond)
 
#define ECP_MPI_INIT(s, n, p)   { s, (n), (mbedtls_mpi_uint *) (p) }
 
#define ECP_MPI_INIT_ARRAY(x)    ECP_MPI_INIT(1, sizeof(x) / sizeof(mbedtls_mpi_uint), x)
 
#define ECP_LOAD_GROUP
 
#define NIST_MODP(P)   grp->modp = ecp_mod_ ## P;
 
#define LOAD_GROUP_A(G)
 
#define LOAD_GROUP(G)
 
#define WIDTH   8 / sizeof(mbedtls_mpi_uint)
 
#define A(i)   N->p + (i) * WIDTH
 
#define ADD(i)   add64(p, A(i), &c)
 
#define NEXT   p += WIDTH; carry64(p, &c)
 
#define LAST   p += WIDTH; *p = c; while (++p < end) *p = 0
 
#define LOAD32   cur = A(i);
 
#define MAX32   N->n
 
#define A(j)   N->p[j]
 
#define STORE32   N->p[i] = cur;
 
#define ADD(j)   add32(&cur, A(j), &c);
 
#define SUB(j)   sub32(&cur, A(j), &c);
 
#define ciL   (sizeof(mbedtls_mpi_uint)) /* chars in limb */
 
#define biL   (ciL << 3) /* bits in limb */
 
#define INIT(b)
 
#define NEXT
 
#define LAST
 
#define P521_WIDTH   (521 / 8 / sizeof(mbedtls_mpi_uint) + 1)
 
#define P521_MASK   0x01FF
 
#define P255_WIDTH   (255 / 8 / sizeof(mbedtls_mpi_uint) + 1)
 
#define P448_WIDTH   (448 / 8 / sizeof(mbedtls_mpi_uint))
 
#define DIV_ROUND_UP(X, Y)   (((X) + (Y) -1) / (Y))
 
#define P224_WIDTH_MIN   (28 / sizeof(mbedtls_mpi_uint))
 
#define P224_WIDTH_MAX   DIV_ROUND_UP(28, sizeof(mbedtls_mpi_uint))
 
#define P224_UNUSED_BITS   ((P224_WIDTH_MAX * sizeof(mbedtls_mpi_uint) * 8) - 224)
 
#define P_KOBLITZ_MAX   (256 / 8 / sizeof(mbedtls_mpi_uint))
 
#define P_KOBLITZ_R   (8 / sizeof(mbedtls_mpi_uint))
 

Functions

static void ecp_mpi_load (mbedtls_mpi *X, const mbedtls_mpi_uint *p, size_t len)
 
static void ecp_mpi_set1 (mbedtls_mpi *X)
 
static int ecp_group_load (mbedtls_ecp_group *grp, const mbedtls_mpi_uint *p, size_t plen, const mbedtls_mpi_uint *a, size_t alen, const mbedtls_mpi_uint *b, size_t blen, const mbedtls_mpi_uint *gx, size_t gxlen, const mbedtls_mpi_uint *gy, size_t gylen, const mbedtls_mpi_uint *n, size_t nlen)
 
static int ecp_mod_p192 (mbedtls_mpi *)
 
static int ecp_mod_p224 (mbedtls_mpi *)
 
static int ecp_mod_p256 (mbedtls_mpi *)
 
static int ecp_mod_p384 (mbedtls_mpi *)
 
static int ecp_mod_p521 (mbedtls_mpi *)
 
static int ecp_mod_p255 (mbedtls_mpi *)
 
static int ecp_mod_p448 (mbedtls_mpi *)
 
static int ecp_mod_p192k1 (mbedtls_mpi *)
 
static int ecp_mod_p224k1 (mbedtls_mpi *)
 
static int ecp_mod_p256k1 (mbedtls_mpi *)
 
static int ecp_use_curve25519 (mbedtls_ecp_group *grp)
 
static int ecp_use_curve448 (mbedtls_ecp_group *grp)
 
int mbedtls_ecp_group_load_ncbicxx_2_28_3 (mbedtls_ecp_group *grp, mbedtls_ecp_group_id id)
 
static void add64 (mbedtls_mpi_uint *dst, mbedtls_mpi_uint *src, mbedtls_mpi_uint *carry)
 
static void carry64 (mbedtls_mpi_uint *dst, mbedtls_mpi_uint *carry)
 
static void add32 (uint32_t *dst, uint32_t src, signed char *carry)
 
static void sub32 (uint32_t *dst, uint32_t src, signed char *carry)
 
static void mbedtls_ecp_fix_negative (mbedtls_mpi *N, signed char c, size_t bits)
 
static int ecp_mod_koblitz (mbedtls_mpi *N, mbedtls_mpi_uint *Rp, size_t p_limbs, size_t adjust, size_t shift, mbedtls_mpi_uint mask)
 

Variables

static const mbedtls_mpi_uint secp192r1_p []
 
static const mbedtls_mpi_uint secp192r1_b []
 
static const mbedtls_mpi_uint secp192r1_gx []
 
static const mbedtls_mpi_uint secp192r1_gy []
 
static const mbedtls_mpi_uint secp192r1_n []
 
static const mbedtls_mpi_uint secp224r1_p []
 
static const mbedtls_mpi_uint secp224r1_b []
 
static const mbedtls_mpi_uint secp224r1_gx []
 
static const mbedtls_mpi_uint secp224r1_gy []
 
static const mbedtls_mpi_uint secp224r1_n []
 
static const mbedtls_mpi_uint secp256r1_p []
 
static const mbedtls_mpi_uint secp256r1_b []
 
static const mbedtls_mpi_uint secp256r1_gx []
 
static const mbedtls_mpi_uint secp256r1_gy []
 
static const mbedtls_mpi_uint secp256r1_n []
 
static const mbedtls_mpi_uint secp384r1_p []
 
static const mbedtls_mpi_uint secp384r1_b []
 
static const mbedtls_mpi_uint secp384r1_gx []
 
static const mbedtls_mpi_uint secp384r1_gy []
 
static const mbedtls_mpi_uint secp384r1_n []
 
static const mbedtls_mpi_uint secp521r1_p []
 
static const mbedtls_mpi_uint secp521r1_b []
 
static const mbedtls_mpi_uint secp521r1_gx []
 
static const mbedtls_mpi_uint secp521r1_gy []
 
static const mbedtls_mpi_uint secp521r1_n []
 
static const mbedtls_mpi_uint secp192k1_p []
 
static const mbedtls_mpi_uint secp192k1_a []
 
static const mbedtls_mpi_uint secp192k1_b []
 
static const mbedtls_mpi_uint secp192k1_gx []
 
static const mbedtls_mpi_uint secp192k1_gy []
 
static const mbedtls_mpi_uint secp192k1_n []
 
static const mbedtls_mpi_uint secp224k1_p []
 
static const mbedtls_mpi_uint secp224k1_a []
 
static const mbedtls_mpi_uint secp224k1_b []
 
static const mbedtls_mpi_uint secp224k1_gx []
 
static const mbedtls_mpi_uint secp224k1_gy []
 
static const mbedtls_mpi_uint secp224k1_n []
 
static const mbedtls_mpi_uint secp256k1_p []
 
static const mbedtls_mpi_uint secp256k1_a []
 
static const mbedtls_mpi_uint secp256k1_b []
 
static const mbedtls_mpi_uint secp256k1_gx []
 
static const mbedtls_mpi_uint secp256k1_gy []
 
static const mbedtls_mpi_uint secp256k1_n []
 
static const mbedtls_mpi_uint brainpoolP256r1_p []
 
static const mbedtls_mpi_uint brainpoolP256r1_a []
 
static const mbedtls_mpi_uint brainpoolP256r1_b []
 
static const mbedtls_mpi_uint brainpoolP256r1_gx []
 
static const mbedtls_mpi_uint brainpoolP256r1_gy []
 
static const mbedtls_mpi_uint brainpoolP256r1_n []
 
static const mbedtls_mpi_uint brainpoolP384r1_p []
 
static const mbedtls_mpi_uint brainpoolP384r1_a []
 
static const mbedtls_mpi_uint brainpoolP384r1_b []
 
static const mbedtls_mpi_uint brainpoolP384r1_gx []
 
static const mbedtls_mpi_uint brainpoolP384r1_gy []
 
static const mbedtls_mpi_uint brainpoolP384r1_n []
 
static const mbedtls_mpi_uint brainpoolP512r1_p []
 
static const mbedtls_mpi_uint brainpoolP512r1_a []
 
static const mbedtls_mpi_uint brainpoolP512r1_b []
 
static const mbedtls_mpi_uint brainpoolP512r1_gx []
 
static const mbedtls_mpi_uint brainpoolP512r1_gy []
 
static const mbedtls_mpi_uint brainpoolP512r1_n []
 
static const mbedtls_mpi_sint curve25519_a24 = 0x01DB42
 
static const unsigned char curve25519_part_of_n []
 
static const mbedtls_mpi_sint curve448_a24 = 0x98AA
 
static const unsigned char curve448_part_of_n []
 

Macro Definition Documentation

◆ A [1/2]

#define A (   i)    N->p + (i) * WIDTH

Definition at line 948 of file ecp_curves.c.

◆ A [2/2]

#define A (   j)    N->p[j]

Definition at line 948 of file ecp_curves.c.

◆ ADD [1/2]

#define ADD (   i)    add64(p, A(i), &c)

Definition at line 982 of file ecp_curves.c.

◆ ADD [2/2]

#define ADD (   j)    add32(&cur, A(j), &c);

Definition at line 982 of file ecp_curves.c.

◆ biL

#define biL   (ciL << 3) /* bits in limb */

Definition at line 986 of file ecp_curves.c.

◆ ciL

#define ciL   (sizeof(mbedtls_mpi_uint)) /* chars in limb */

Definition at line 985 of file ecp_curves.c.

◆ DIV_ROUND_UP

#define DIV_ROUND_UP (   X,
 
)    (((X) + (Y) -1) / (Y))

Definition at line 1281 of file ecp_curves.c.

◆ ECP_LOAD_GROUP

#define ECP_LOAD_GROUP

Definition at line 530 of file ecp_curves.c.

◆ ECP_MPI_INIT

#define ECP_MPI_INIT (   s,
  n,
 
)    { s, (n), (mbedtls_mpi_uint *) (p) }

Definition at line 41 of file ecp_curves.c.

◆ ECP_MPI_INIT_ARRAY

#define ECP_MPI_INIT_ARRAY (   x)     ECP_MPI_INIT(1, sizeof(x) / sizeof(mbedtls_mpi_uint), x)

Definition at line 43 of file ecp_curves.c.

◆ ECP_VALIDATE

#define ECP_VALIDATE (   cond)     MBEDTLS_INTERNAL_VALIDATE(cond)

Definition at line 38 of file ecp_curves.c.

◆ ECP_VALIDATE_RET

#define ECP_VALIDATE_RET (   cond)     MBEDTLS_INTERNAL_VALIDATE_RET(cond, MBEDTLS_ERR_ECP_BAD_INPUT_DATA)

Definition at line 36 of file ecp_curves.c.

◆ INIT

#define INIT (   b)
Value:
signed char c = 0, cc; \
uint32_t cur; \
size_t i = 0, bits = (b); \
/* N is the size of the product of two b-bit numbers, plus one */ \
/* limb for fix_negative */ \
MBEDTLS_MPI_CHK(mbedtls_mpi_grow(N, (b) * 2 / biL + 1)); \
LOAD32;
int mbedtls_mpi_grow(mbedtls_mpi *X, size_t nblimbs)
Enlarge an MPI to the specified number of limbs.
#define biL
Definition: ecp_curves.c:986
int i
#define MBEDTLS_ERR_ERROR_CORRUPTION_DETECTED
This is a bug in the library.
Definition: error.h:122
#define N
Definition: crc32.c:57

Definition at line 991 of file ecp_curves.c.

◆ LAST [1/2]

#define LAST   p += WIDTH; *p = c; while (++p < end) *p = 0

Definition at line 1009 of file ecp_curves.c.

◆ LAST [2/2]

#define LAST
Value:
STORE32; i++; \
cur = c > 0 ? c : 0; STORE32; \
cur = 0; while (++i < MAX32) { STORE32; } \
if (c < 0) mbedtls_ecp_fix_negative(N, c, bits);
#define MAX32
Definition: ecp_curves.c:947
static void mbedtls_ecp_fix_negative(mbedtls_mpi *N, signed char c, size_t bits)
Definition: ecp_curves.c:1020
#define STORE32
Definition: ecp_curves.c:949

Definition at line 1009 of file ecp_curves.c.

◆ LOAD32

#define LOAD32   cur = A(i);

Definition at line 943 of file ecp_curves.c.

◆ LOAD_GROUP

#define LOAD_GROUP (   G)
Value:
G ## _p, sizeof(G ## _p), \
NULL, 0, \
G ## _b, sizeof(G ## _b), \
G ## _gx, sizeof(G ## _gx), \
G ## _gy, sizeof(G ## _gy), \
G ## _n, sizeof(G ## _n))
#define G(x, y, z)
Definition: md4.c:179
static int ecp_group_load(mbedtls_ecp_group *grp, const mbedtls_mpi_uint *p, size_t plen, const mbedtls_mpi_uint *a, size_t alen, const mbedtls_mpi_uint *b, size_t blen, const mbedtls_mpi_uint *gx, size_t gxlen, const mbedtls_mpi_uint *gy, size_t gylen, const mbedtls_mpi_uint *n, size_t nlen)
Definition: ecp_curves.c:559
#define NULL
Definition: ncbistd.hpp:225

Definition at line 636 of file ecp_curves.c.

◆ LOAD_GROUP_A

#define LOAD_GROUP_A (   G)
Value:
G ## _p, sizeof(G ## _p), \
G ## _a, sizeof(G ## _a), \
G ## _b, sizeof(G ## _b), \
G ## _gx, sizeof(G ## _gx), \
G ## _gy, sizeof(G ## _gy), \
G ## _n, sizeof(G ## _n))

Definition at line 628 of file ecp_curves.c.

◆ MAX32

#define MAX32   N->n

Definition at line 947 of file ecp_curves.c.

◆ NEXT [1/2]

#define NEXT   p += WIDTH; carry64(p, &c)

Definition at line 1001 of file ecp_curves.c.

◆ NEXT [2/2]

#define NEXT
Value:
STORE32; i++; LOAD32; \
cc = c; c = 0; \
if (cc < 0) \
sub32(&cur, -cc, &c); \
add32(&cur, cc, &c); \
static void add32(uint32_t *dst, uint32_t src, signed char *carry)
Definition: ecp_curves.c:970
#define LOAD32
Definition: ecp_curves.c:943

Definition at line 1001 of file ecp_curves.c.

◆ NIST_MODP

#define NIST_MODP (   P)    grp->modp = ecp_mod_ ## P;

Definition at line 605 of file ecp_curves.c.

◆ P224_UNUSED_BITS

#define P224_UNUSED_BITS   ((P224_WIDTH_MAX * sizeof(mbedtls_mpi_uint) * 8) - 224)

Definition at line 1284 of file ecp_curves.c.

◆ P224_WIDTH_MAX

#define P224_WIDTH_MAX   DIV_ROUND_UP(28, sizeof(mbedtls_mpi_uint))

Definition at line 1283 of file ecp_curves.c.

◆ P224_WIDTH_MIN

#define P224_WIDTH_MIN   (28 / sizeof(mbedtls_mpi_uint))

Definition at line 1282 of file ecp_curves.c.

◆ P255_WIDTH

#define P255_WIDTH   (255 / 8 / sizeof(mbedtls_mpi_uint) + 1)

Definition at line 1231 of file ecp_curves.c.

◆ P448_WIDTH

#define P448_WIDTH   (448 / 8 / sizeof(mbedtls_mpi_uint))

Definition at line 1278 of file ecp_curves.c.

◆ P521_MASK

#define P521_MASK   0x01FF

Definition at line 1179 of file ecp_curves.c.

◆ P521_WIDTH

#define P521_WIDTH   (521 / 8 / sizeof(mbedtls_mpi_uint) + 1)

Definition at line 1176 of file ecp_curves.c.

◆ P_KOBLITZ_MAX

#define P_KOBLITZ_MAX   (256 / 8 / sizeof(mbedtls_mpi_uint))

Definition at line 1361 of file ecp_curves.c.

◆ P_KOBLITZ_R

#define P_KOBLITZ_R   (8 / sizeof(mbedtls_mpi_uint))

Definition at line 1362 of file ecp_curves.c.

◆ STORE32

#define STORE32   N->p[i] = cur;

Definition at line 949 of file ecp_curves.c.

◆ SUB

#define SUB (   j)    sub32(&cur, A(j), &c);

Definition at line 983 of file ecp_curves.c.

◆ WIDTH

#define WIDTH   8 / sizeof(mbedtls_mpi_uint)

Definition at line 888 of file ecp_curves.c.

Function Documentation

◆ add32()

static void add32 ( uint32_t dst,
uint32_t  src,
signed char *  carry 
)
inlinestatic

Definition at line 970 of file ecp_curves.c.

◆ add64()

static void add64 ( mbedtls_mpi_uint dst,
mbedtls_mpi_uint src,
mbedtls_mpi_uint carry 
)
inlinestatic

Definition at line 867 of file ecp_curves.c.

References i.

◆ carry64()

static void carry64 ( mbedtls_mpi_uint dst,
mbedtls_mpi_uint carry 
)
inlinestatic

Definition at line 879 of file ecp_curves.c.

References i.

◆ ecp_group_load()

static int ecp_group_load ( mbedtls_ecp_group grp,
const mbedtls_mpi_uint p,
size_t  plen,
const mbedtls_mpi_uint a,
size_t  alen,
const mbedtls_mpi_uint b,
size_t  blen,
const mbedtls_mpi_uint gx,
size_t  gxlen,
const mbedtls_mpi_uint gy,
size_t  gylen,
const mbedtls_mpi_uint n,
size_t  nlen 
)
static

◆ ecp_mod_koblitz()

static int ecp_mod_koblitz ( mbedtls_mpi N,
mbedtls_mpi_uint Rp,
size_t  p_limbs,
size_t  adjust,
size_t  shift,
mbedtls_mpi_uint  mask 
)
inlinestatic

◆ ecp_mod_p192()

static int ecp_mod_p192 ( mbedtls_mpi N)
static

◆ ecp_mod_p192k1()

static int ecp_mod_p192k1 ( mbedtls_mpi N)
static

Definition at line 1446 of file ecp_curves.c.

References ecp_mod_koblitz(), MBEDTLS_BYTES_TO_T_UINT_8, and N.

Referenced by mbedtls_ecp_group_load_ncbicxx_2_28_3().

◆ ecp_mod_p224()

static int ecp_mod_p224 ( mbedtls_mpi N)
static

Definition at line 1054 of file ecp_curves.c.

References ADD, cleanup(), INIT, LAST, NEXT, and SUB.

◆ ecp_mod_p224k1()

static int ecp_mod_p224k1 ( mbedtls_mpi N)
static

Definition at line 1463 of file ecp_curves.c.

References ecp_mod_koblitz(), MBEDTLS_BYTES_TO_T_UINT_8, and N.

Referenced by mbedtls_ecp_group_load_ncbicxx_2_28_3().

◆ ecp_mod_p255()

static int ecp_mod_p255 ( mbedtls_mpi N)
static

◆ ecp_mod_p256()

static int ecp_mod_p256 ( mbedtls_mpi N)
static

Definition at line 1075 of file ecp_curves.c.

References ADD, cleanup(), INIT, LAST, NEXT, and SUB.

◆ ecp_mod_p256k1()

static int ecp_mod_p256k1 ( mbedtls_mpi N)
static

Definition at line 1485 of file ecp_curves.c.

References ecp_mod_koblitz(), MBEDTLS_BYTES_TO_T_UINT_8, and N.

Referenced by mbedtls_ecp_group_load_ncbicxx_2_28_3().

◆ ecp_mod_p384()

static int ecp_mod_p384 ( mbedtls_mpi N)
static

Definition at line 1112 of file ecp_curves.c.

References ADD, cleanup(), INIT, LAST, NEXT, and SUB.

◆ ecp_mod_p448()

static int ecp_mod_p448 ( mbedtls_mpi N)
static

◆ ecp_mod_p521()

static int ecp_mod_p521 ( mbedtls_mpi N)
static

◆ ecp_mpi_load()

static void ecp_mpi_load ( mbedtls_mpi X,
const mbedtls_mpi_uint p,
size_t  len 
)
inlinestatic

Definition at line 538 of file ecp_curves.c.

References len, mbedtls_mpi::n, mbedtls_mpi::p, and mbedtls_mpi::s.

Referenced by ecp_group_load().

◆ ecp_mpi_set1()

static void ecp_mpi_set1 ( mbedtls_mpi X)
inlinestatic

Definition at line 548 of file ecp_curves.c.

References mbedtls_mpi::n, mbedtls_mpi::p, and mbedtls_mpi::s.

Referenced by ecp_group_load().

◆ ecp_use_curve25519()

static int ecp_use_curve25519 ( mbedtls_ecp_group grp)
static

◆ ecp_use_curve448()

static int ecp_use_curve448 ( mbedtls_ecp_group grp)
static

◆ mbedtls_ecp_fix_negative()

static void mbedtls_ecp_fix_negative ( mbedtls_mpi N,
signed char  c,
size_t  bits 
)
static

Definition at line 1020 of file ecp_curves.c.

References i, and N.

◆ mbedtls_ecp_group_load_ncbicxx_2_28_3()

int mbedtls_ecp_group_load_ncbicxx_2_28_3 ( mbedtls_ecp_group grp,
mbedtls_ecp_group_id  id 
)

◆ sub32()

static void sub32 ( uint32_t dst,
uint32_t  src,
signed char *  carry 
)
inlinestatic

Definition at line 976 of file ecp_curves.c.

Variable Documentation

◆ brainpoolP256r1_a

const mbedtls_mpi_uint brainpoolP256r1_a[]
static
Initial value:
= {
((mbedtls_mpi_uint) ( 0xD9 ) << 0) | ((mbedtls_mpi_uint) ( 0xB5 ) << 8) | ((mbedtls_mpi_uint) ( 0x30 ) << 16) | ((mbedtls_mpi_uint) ( 0xF3 ) << 24), ((mbedtls_mpi_uint) ( 0x44 ) << 0) | ((mbedtls_mpi_uint) ( 0x4B ) << 8) | ((mbedtls_mpi_uint) ( 0x4A ) << 16) | ((mbedtls_mpi_uint) ( 0xE9 ) << 24),
((mbedtls_mpi_uint) ( 0x6C ) << 0) | ((mbedtls_mpi_uint) ( 0x5C ) << 8) | ((mbedtls_mpi_uint) ( 0xDC ) << 16) | ((mbedtls_mpi_uint) ( 0x26 ) << 24), ((mbedtls_mpi_uint) ( 0xC1 ) << 0) | ((mbedtls_mpi_uint) ( 0x55 ) << 8) | ((mbedtls_mpi_uint) ( 0x80 ) << 16) | ((mbedtls_mpi_uint) ( 0xFB ) << 24),
((mbedtls_mpi_uint) ( 0xE7 ) << 0) | ((mbedtls_mpi_uint) ( 0xFF ) << 8) | ((mbedtls_mpi_uint) ( 0x7A ) << 16) | ((mbedtls_mpi_uint) ( 0x41 ) << 24), ((mbedtls_mpi_uint) ( 0x30 ) << 0) | ((mbedtls_mpi_uint) ( 0x75 ) << 8) | ((mbedtls_mpi_uint) ( 0xF6 ) << 16) | ((mbedtls_mpi_uint) ( 0xEE ) << 24),
((mbedtls_mpi_uint) ( 0x57 ) << 0) | ((mbedtls_mpi_uint) ( 0x30 ) << 8) | ((mbedtls_mpi_uint) ( 0x2C ) << 16) | ((mbedtls_mpi_uint) ( 0xFC ) << 24), ((mbedtls_mpi_uint) ( 0x75 ) << 0) | ((mbedtls_mpi_uint) ( 0x09 ) << 8) | ((mbedtls_mpi_uint) ( 0x5A ) << 16) | ((mbedtls_mpi_uint) ( 0x7D ) << 24),
}
uint32_t mbedtls_mpi_uint
The type of machine digits in a bignum, called _limbs_.
Definition: bignum.h:180

Definition at line 366 of file ecp_curves.c.

◆ brainpoolP256r1_b

const mbedtls_mpi_uint brainpoolP256r1_b[]
static
Initial value:
= {
((mbedtls_mpi_uint) ( 0xB6 ) << 0) | ((mbedtls_mpi_uint) ( 0x07 ) << 8) | ((mbedtls_mpi_uint) ( 0x8C ) << 16) | ((mbedtls_mpi_uint) ( 0xFF ) << 24), ((mbedtls_mpi_uint) ( 0x18 ) << 0) | ((mbedtls_mpi_uint) ( 0xDC ) << 8) | ((mbedtls_mpi_uint) ( 0xCC ) << 16) | ((mbedtls_mpi_uint) ( 0x6B ) << 24),
((mbedtls_mpi_uint) ( 0xCE ) << 0) | ((mbedtls_mpi_uint) ( 0xE1 ) << 8) | ((mbedtls_mpi_uint) ( 0xF7 ) << 16) | ((mbedtls_mpi_uint) ( 0x5C ) << 24), ((mbedtls_mpi_uint) ( 0x29 ) << 0) | ((mbedtls_mpi_uint) ( 0x16 ) << 8) | ((mbedtls_mpi_uint) ( 0x84 ) << 16) | ((mbedtls_mpi_uint) ( 0x95 ) << 24),
((mbedtls_mpi_uint) ( 0xBF ) << 0) | ((mbedtls_mpi_uint) ( 0x7C ) << 8) | ((mbedtls_mpi_uint) ( 0xD7 ) << 16) | ((mbedtls_mpi_uint) ( 0xBB ) << 24), ((mbedtls_mpi_uint) ( 0xD9 ) << 0) | ((mbedtls_mpi_uint) ( 0xB5 ) << 8) | ((mbedtls_mpi_uint) ( 0x30 ) << 16) | ((mbedtls_mpi_uint) ( 0xF3 ) << 24),
((mbedtls_mpi_uint) ( 0x44 ) << 0) | ((mbedtls_mpi_uint) ( 0x4B ) << 8) | ((mbedtls_mpi_uint) ( 0x4A ) << 16) | ((mbedtls_mpi_uint) ( 0xE9 ) << 24), ((mbedtls_mpi_uint) ( 0x6C ) << 0) | ((mbedtls_mpi_uint) ( 0x5C ) << 8) | ((mbedtls_mpi_uint) ( 0xDC ) << 16) | ((mbedtls_mpi_uint) ( 0x26 ) << 24),
}

Definition at line 372 of file ecp_curves.c.

◆ brainpoolP256r1_gx

const mbedtls_mpi_uint brainpoolP256r1_gx[]
static
Initial value:
= {
((mbedtls_mpi_uint) ( 0x62 ) << 0) | ((mbedtls_mpi_uint) ( 0x32 ) << 8) | ((mbedtls_mpi_uint) ( 0xCE ) << 16) | ((mbedtls_mpi_uint) ( 0x9A ) << 24), ((mbedtls_mpi_uint) ( 0xBD ) << 0) | ((mbedtls_mpi_uint) ( 0x53 ) << 8) | ((mbedtls_mpi_uint) ( 0x44 ) << 16) | ((mbedtls_mpi_uint) ( 0x3A ) << 24),
((mbedtls_mpi_uint) ( 0xC2 ) << 0) | ((mbedtls_mpi_uint) ( 0x23 ) << 8) | ((mbedtls_mpi_uint) ( 0xBD ) << 16) | ((mbedtls_mpi_uint) ( 0xE3 ) << 24), ((mbedtls_mpi_uint) ( 0xE1 ) << 0) | ((mbedtls_mpi_uint) ( 0x27 ) << 8) | ((mbedtls_mpi_uint) ( 0xDE ) << 16) | ((mbedtls_mpi_uint) ( 0xB9 ) << 24),
((mbedtls_mpi_uint) ( 0xAF ) << 0) | ((mbedtls_mpi_uint) ( 0xB7 ) << 8) | ((mbedtls_mpi_uint) ( 0x81 ) << 16) | ((mbedtls_mpi_uint) ( 0xFC ) << 24), ((mbedtls_mpi_uint) ( 0x2F ) << 0) | ((mbedtls_mpi_uint) ( 0x48 ) << 8) | ((mbedtls_mpi_uint) ( 0x4B ) << 16) | ((mbedtls_mpi_uint) ( 0x2C ) << 24),
((mbedtls_mpi_uint) ( 0xCB ) << 0) | ((mbedtls_mpi_uint) ( 0x57 ) << 8) | ((mbedtls_mpi_uint) ( 0x7E ) << 16) | ((mbedtls_mpi_uint) ( 0xCB ) << 24), ((mbedtls_mpi_uint) ( 0xB9 ) << 0) | ((mbedtls_mpi_uint) ( 0xAE ) << 8) | ((mbedtls_mpi_uint) ( 0xD2 ) << 16) | ((mbedtls_mpi_uint) ( 0x8B ) << 24),
}

Definition at line 378 of file ecp_curves.c.

◆ brainpoolP256r1_gy

const mbedtls_mpi_uint brainpoolP256r1_gy[]
static
Initial value:
= {
((mbedtls_mpi_uint) ( 0x97 ) << 0) | ((mbedtls_mpi_uint) ( 0x69 ) << 8) | ((mbedtls_mpi_uint) ( 0x04 ) << 16) | ((mbedtls_mpi_uint) ( 0x2F ) << 24), ((mbedtls_mpi_uint) ( 0xC7 ) << 0) | ((mbedtls_mpi_uint) ( 0x54 ) << 8) | ((mbedtls_mpi_uint) ( 0x1D ) << 16) | ((mbedtls_mpi_uint) ( 0x5C ) << 24),
((mbedtls_mpi_uint) ( 0x54 ) << 0) | ((mbedtls_mpi_uint) ( 0x8E ) << 8) | ((mbedtls_mpi_uint) ( 0xED ) << 16) | ((mbedtls_mpi_uint) ( 0x2D ) << 24), ((mbedtls_mpi_uint) ( 0x13 ) << 0) | ((mbedtls_mpi_uint) ( 0x45 ) << 8) | ((mbedtls_mpi_uint) ( 0x77 ) << 16) | ((mbedtls_mpi_uint) ( 0xC2 ) << 24),
((mbedtls_mpi_uint) ( 0xC9 ) << 0) | ((mbedtls_mpi_uint) ( 0x1D ) << 8) | ((mbedtls_mpi_uint) ( 0x61 ) << 16) | ((mbedtls_mpi_uint) ( 0x14 ) << 24), ((mbedtls_mpi_uint) ( 0x1A ) << 0) | ((mbedtls_mpi_uint) ( 0x46 ) << 8) | ((mbedtls_mpi_uint) ( 0xF8 ) << 16) | ((mbedtls_mpi_uint) ( 0x97 ) << 24),
((mbedtls_mpi_uint) ( 0xFD ) << 0) | ((mbedtls_mpi_uint) ( 0xC4 ) << 8) | ((mbedtls_mpi_uint) ( 0xDA ) << 16) | ((mbedtls_mpi_uint) ( 0xC3 ) << 24), ((mbedtls_mpi_uint) ( 0x35 ) << 0) | ((mbedtls_mpi_uint) ( 0xF8 ) << 8) | ((mbedtls_mpi_uint) ( 0x7E ) << 16) | ((mbedtls_mpi_uint) ( 0x54 ) << 24),
}

Definition at line 384 of file ecp_curves.c.

◆ brainpoolP256r1_n

const mbedtls_mpi_uint brainpoolP256r1_n[]
static
Initial value:
= {
((mbedtls_mpi_uint) ( 0xA7 ) << 0) | ((mbedtls_mpi_uint) ( 0x56 ) << 8) | ((mbedtls_mpi_uint) ( 0x48 ) << 16) | ((mbedtls_mpi_uint) ( 0x97 ) << 24), ((mbedtls_mpi_uint) ( 0x82 ) << 0) | ((mbedtls_mpi_uint) ( 0x0E ) << 8) | ((mbedtls_mpi_uint) ( 0x1E ) << 16) | ((mbedtls_mpi_uint) ( 0x90 ) << 24),
((mbedtls_mpi_uint) ( 0xF7 ) << 0) | ((mbedtls_mpi_uint) ( 0xA6 ) << 8) | ((mbedtls_mpi_uint) ( 0x61 ) << 16) | ((mbedtls_mpi_uint) ( 0xB5 ) << 24), ((mbedtls_mpi_uint) ( 0xA3 ) << 0) | ((mbedtls_mpi_uint) ( 0x7A ) << 8) | ((mbedtls_mpi_uint) ( 0x39 ) << 16) | ((mbedtls_mpi_uint) ( 0x8C ) << 24),
((mbedtls_mpi_uint) ( 0x71 ) << 0) | ((mbedtls_mpi_uint) ( 0x8D ) << 8) | ((mbedtls_mpi_uint) ( 0x83 ) << 16) | ((mbedtls_mpi_uint) ( 0x9D ) << 24), ((mbedtls_mpi_uint) ( 0x90 ) << 0) | ((mbedtls_mpi_uint) ( 0x0A ) << 8) | ((mbedtls_mpi_uint) ( 0x66 ) << 16) | ((mbedtls_mpi_uint) ( 0x3E ) << 24),
((mbedtls_mpi_uint) ( 0xBC ) << 0) | ((mbedtls_mpi_uint) ( 0xA9 ) << 8) | ((mbedtls_mpi_uint) ( 0xEE ) << 16) | ((mbedtls_mpi_uint) ( 0xA1 ) << 24), ((mbedtls_mpi_uint) ( 0xDB ) << 0) | ((mbedtls_mpi_uint) ( 0x57 ) << 8) | ((mbedtls_mpi_uint) ( 0xFB ) << 16) | ((mbedtls_mpi_uint) ( 0xA9 ) << 24),
}

Definition at line 390 of file ecp_curves.c.

◆ brainpoolP256r1_p

const mbedtls_mpi_uint brainpoolP256r1_p[]
static
Initial value:
= {
((mbedtls_mpi_uint) ( 0x77 ) << 0) | ((mbedtls_mpi_uint) ( 0x53 ) << 8) | ((mbedtls_mpi_uint) ( 0x6E ) << 16) | ((mbedtls_mpi_uint) ( 0x1F ) << 24), ((mbedtls_mpi_uint) ( 0x1D ) << 0) | ((mbedtls_mpi_uint) ( 0x48 ) << 8) | ((mbedtls_mpi_uint) ( 0x13 ) << 16) | ((mbedtls_mpi_uint) ( 0x20 ) << 24),
((mbedtls_mpi_uint) ( 0x28 ) << 0) | ((mbedtls_mpi_uint) ( 0x20 ) << 8) | ((mbedtls_mpi_uint) ( 0x26 ) << 16) | ((mbedtls_mpi_uint) ( 0xD5 ) << 24), ((mbedtls_mpi_uint) ( 0x23 ) << 0) | ((mbedtls_mpi_uint) ( 0xF6 ) << 8) | ((mbedtls_mpi_uint) ( 0x3B ) << 16) | ((mbedtls_mpi_uint) ( 0x6E ) << 24),
((mbedtls_mpi_uint) ( 0x72 ) << 0) | ((mbedtls_mpi_uint) ( 0x8D ) << 8) | ((mbedtls_mpi_uint) ( 0x83 ) << 16) | ((mbedtls_mpi_uint) ( 0x9D ) << 24), ((mbedtls_mpi_uint) ( 0x90 ) << 0) | ((mbedtls_mpi_uint) ( 0x0A ) << 8) | ((mbedtls_mpi_uint) ( 0x66 ) << 16) | ((mbedtls_mpi_uint) ( 0x3E ) << 24),
((mbedtls_mpi_uint) ( 0xBC ) << 0) | ((mbedtls_mpi_uint) ( 0xA9 ) << 8) | ((mbedtls_mpi_uint) ( 0xEE ) << 16) | ((mbedtls_mpi_uint) ( 0xA1 ) << 24), ((mbedtls_mpi_uint) ( 0xDB ) << 0) | ((mbedtls_mpi_uint) ( 0x57 ) << 8) | ((mbedtls_mpi_uint) ( 0xFB ) << 16) | ((mbedtls_mpi_uint) ( 0xA9 ) << 24),
}

Definition at line 360 of file ecp_curves.c.

◆ brainpoolP384r1_a

const mbedtls_mpi_uint brainpoolP384r1_a[]
static
Initial value:
= {
((mbedtls_mpi_uint) ( 0x26 ) << 0) | ((mbedtls_mpi_uint) ( 0x28 ) << 8) | ((mbedtls_mpi_uint) ( 0xCE ) << 16) | ((mbedtls_mpi_uint) ( 0x22 ) << 24), ((mbedtls_mpi_uint) ( 0xDD ) << 0) | ((mbedtls_mpi_uint) ( 0xC7 ) << 8) | ((mbedtls_mpi_uint) ( 0xA8 ) << 16) | ((mbedtls_mpi_uint) ( 0x04 ) << 24),
((mbedtls_mpi_uint) ( 0xEB ) << 0) | ((mbedtls_mpi_uint) ( 0xD4 ) << 8) | ((mbedtls_mpi_uint) ( 0x3A ) << 16) | ((mbedtls_mpi_uint) ( 0x50 ) << 24), ((mbedtls_mpi_uint) ( 0x4A ) << 0) | ((mbedtls_mpi_uint) ( 0x81 ) << 8) | ((mbedtls_mpi_uint) ( 0xA5 ) << 16) | ((mbedtls_mpi_uint) ( 0x8A ) << 24),
((mbedtls_mpi_uint) ( 0x0F ) << 0) | ((mbedtls_mpi_uint) ( 0xF9 ) << 8) | ((mbedtls_mpi_uint) ( 0x91 ) << 16) | ((mbedtls_mpi_uint) ( 0xBA ) << 24), ((mbedtls_mpi_uint) ( 0xEF ) << 0) | ((mbedtls_mpi_uint) ( 0x65 ) << 8) | ((mbedtls_mpi_uint) ( 0x91 ) << 16) | ((mbedtls_mpi_uint) ( 0x13 ) << 24),
((mbedtls_mpi_uint) ( 0x87 ) << 0) | ((mbedtls_mpi_uint) ( 0x27 ) << 8) | ((mbedtls_mpi_uint) ( 0xB2 ) << 16) | ((mbedtls_mpi_uint) ( 0x4F ) << 24), ((mbedtls_mpi_uint) ( 0x8E ) << 0) | ((mbedtls_mpi_uint) ( 0xA2 ) << 8) | ((mbedtls_mpi_uint) ( 0xBE ) << 16) | ((mbedtls_mpi_uint) ( 0xC2 ) << 24),
((mbedtls_mpi_uint) ( 0xA0 ) << 0) | ((mbedtls_mpi_uint) ( 0xAF ) << 8) | ((mbedtls_mpi_uint) ( 0x05 ) << 16) | ((mbedtls_mpi_uint) ( 0xCE ) << 24), ((mbedtls_mpi_uint) ( 0x0A ) << 0) | ((mbedtls_mpi_uint) ( 0x08 ) << 8) | ((mbedtls_mpi_uint) ( 0x72 ) << 16) | ((mbedtls_mpi_uint) ( 0x3C ) << 24),
((mbedtls_mpi_uint) ( 0x0C ) << 0) | ((mbedtls_mpi_uint) ( 0x15 ) << 8) | ((mbedtls_mpi_uint) ( 0x8C ) << 16) | ((mbedtls_mpi_uint) ( 0x3D ) << 24), ((mbedtls_mpi_uint) ( 0xC6 ) << 0) | ((mbedtls_mpi_uint) ( 0x82 ) << 8) | ((mbedtls_mpi_uint) ( 0xC3 ) << 16) | ((mbedtls_mpi_uint) ( 0x7B ) << 24),
}

Definition at line 410 of file ecp_curves.c.

◆ brainpoolP384r1_b

const mbedtls_mpi_uint brainpoolP384r1_b[]
static
Initial value:
= {
((mbedtls_mpi_uint) ( 0x11 ) << 0) | ((mbedtls_mpi_uint) ( 0x4C ) << 8) | ((mbedtls_mpi_uint) ( 0x50 ) << 16) | ((mbedtls_mpi_uint) ( 0xFA ) << 24), ((mbedtls_mpi_uint) ( 0x96 ) << 0) | ((mbedtls_mpi_uint) ( 0x86 ) << 8) | ((mbedtls_mpi_uint) ( 0xB7 ) << 16) | ((mbedtls_mpi_uint) ( 0x3A ) << 24),
((mbedtls_mpi_uint) ( 0x94 ) << 0) | ((mbedtls_mpi_uint) ( 0xC9 ) << 8) | ((mbedtls_mpi_uint) ( 0xDB ) << 16) | ((mbedtls_mpi_uint) ( 0x95 ) << 24), ((mbedtls_mpi_uint) ( 0x02 ) << 0) | ((mbedtls_mpi_uint) ( 0x39 ) << 8) | ((mbedtls_mpi_uint) ( 0xB4 ) << 16) | ((mbedtls_mpi_uint) ( 0x7C ) << 24),
((mbedtls_mpi_uint) ( 0xD5 ) << 0) | ((mbedtls_mpi_uint) ( 0x62 ) << 8) | ((mbedtls_mpi_uint) ( 0xEB ) << 16) | ((mbedtls_mpi_uint) ( 0x3E ) << 24), ((mbedtls_mpi_uint) ( 0xA5 ) << 0) | ((mbedtls_mpi_uint) ( 0x0E ) << 8) | ((mbedtls_mpi_uint) ( 0x88 ) << 16) | ((mbedtls_mpi_uint) ( 0x2E ) << 24),
((mbedtls_mpi_uint) ( 0xA6 ) << 0) | ((mbedtls_mpi_uint) ( 0xD2 ) << 8) | ((mbedtls_mpi_uint) ( 0xDC ) << 16) | ((mbedtls_mpi_uint) ( 0x07 ) << 24), ((mbedtls_mpi_uint) ( 0xE1 ) << 0) | ((mbedtls_mpi_uint) ( 0x7D ) << 8) | ((mbedtls_mpi_uint) ( 0xB7 ) << 16) | ((mbedtls_mpi_uint) ( 0x2F ) << 24),
((mbedtls_mpi_uint) ( 0x7C ) << 0) | ((mbedtls_mpi_uint) ( 0x44 ) << 8) | ((mbedtls_mpi_uint) ( 0xF0 ) << 16) | ((mbedtls_mpi_uint) ( 0x16 ) << 24), ((mbedtls_mpi_uint) ( 0x54 ) << 0) | ((mbedtls_mpi_uint) ( 0xB5 ) << 8) | ((mbedtls_mpi_uint) ( 0x39 ) << 16) | ((mbedtls_mpi_uint) ( 0x8B ) << 24),
((mbedtls_mpi_uint) ( 0x26 ) << 0) | ((mbedtls_mpi_uint) ( 0x28 ) << 8) | ((mbedtls_mpi_uint) ( 0xCE ) << 16) | ((mbedtls_mpi_uint) ( 0x22 ) << 24), ((mbedtls_mpi_uint) ( 0xDD ) << 0) | ((mbedtls_mpi_uint) ( 0xC7 ) << 8) | ((mbedtls_mpi_uint) ( 0xA8 ) << 16) | ((mbedtls_mpi_uint) ( 0x04 ) << 24),
}

Definition at line 418 of file ecp_curves.c.

◆ brainpoolP384r1_gx

const mbedtls_mpi_uint brainpoolP384r1_gx[]
static
Initial value:
= {
((mbedtls_mpi_uint) ( 0x1E ) << 0) | ((mbedtls_mpi_uint) ( 0xAF ) << 8) | ((mbedtls_mpi_uint) ( 0xD4 ) << 16) | ((mbedtls_mpi_uint) ( 0x47 ) << 24), ((mbedtls_mpi_uint) ( 0xE2 ) << 0) | ((mbedtls_mpi_uint) ( 0xB2 ) << 8) | ((mbedtls_mpi_uint) ( 0x87 ) << 16) | ((mbedtls_mpi_uint) ( 0xEF ) << 24),
((mbedtls_mpi_uint) ( 0xAA ) << 0) | ((mbedtls_mpi_uint) ( 0x46 ) << 8) | ((mbedtls_mpi_uint) ( 0xD6 ) << 16) | ((mbedtls_mpi_uint) ( 0x36 ) << 24), ((mbedtls_mpi_uint) ( 0x34 ) << 0) | ((mbedtls_mpi_uint) ( 0xE0 ) << 8) | ((mbedtls_mpi_uint) ( 0x26 ) << 16) | ((mbedtls_mpi_uint) ( 0xE8 ) << 24),
((mbedtls_mpi_uint) ( 0xE8 ) << 0) | ((mbedtls_mpi_uint) ( 0x10 ) << 8) | ((mbedtls_mpi_uint) ( 0xBD ) << 16) | ((mbedtls_mpi_uint) ( 0x0C ) << 24), ((mbedtls_mpi_uint) ( 0xFE ) << 0) | ((mbedtls_mpi_uint) ( 0xCA ) << 8) | ((mbedtls_mpi_uint) ( 0x7F ) << 16) | ((mbedtls_mpi_uint) ( 0xDB ) << 24),
((mbedtls_mpi_uint) ( 0xE3 ) << 0) | ((mbedtls_mpi_uint) ( 0x4F ) << 8) | ((mbedtls_mpi_uint) ( 0xF1 ) << 16) | ((mbedtls_mpi_uint) ( 0x7E ) << 24), ((mbedtls_mpi_uint) ( 0xE7 ) << 0) | ((mbedtls_mpi_uint) ( 0xA3 ) << 8) | ((mbedtls_mpi_uint) ( 0x47 ) << 16) | ((mbedtls_mpi_uint) ( 0x88 ) << 24),
((mbedtls_mpi_uint) ( 0x6B ) << 0) | ((mbedtls_mpi_uint) ( 0x3F ) << 8) | ((mbedtls_mpi_uint) ( 0xC1 ) << 16) | ((mbedtls_mpi_uint) ( 0xB7 ) << 24), ((mbedtls_mpi_uint) ( 0x81 ) << 0) | ((mbedtls_mpi_uint) ( 0x3A ) << 8) | ((mbedtls_mpi_uint) ( 0xA6 ) << 16) | ((mbedtls_mpi_uint) ( 0xA2 ) << 24),
((mbedtls_mpi_uint) ( 0xFF ) << 0) | ((mbedtls_mpi_uint) ( 0x45 ) << 8) | ((mbedtls_mpi_uint) ( 0xCF ) << 16) | ((mbedtls_mpi_uint) ( 0x68 ) << 24), ((mbedtls_mpi_uint) ( 0xF0 ) << 0) | ((mbedtls_mpi_uint) ( 0x64 ) << 8) | ((mbedtls_mpi_uint) ( 0x1C ) << 16) | ((mbedtls_mpi_uint) ( 0x1D ) << 24),
}

Definition at line 426 of file ecp_curves.c.

◆ brainpoolP384r1_gy

const mbedtls_mpi_uint brainpoolP384r1_gy[]
static
Initial value:
= {
((mbedtls_mpi_uint) ( 0x15 ) << 0) | ((mbedtls_mpi_uint) ( 0x53 ) << 8) | ((mbedtls_mpi_uint) ( 0x3C ) << 16) | ((mbedtls_mpi_uint) ( 0x26 ) << 24), ((mbedtls_mpi_uint) ( 0x41 ) << 0) | ((mbedtls_mpi_uint) ( 0x03 ) << 8) | ((mbedtls_mpi_uint) ( 0x82 ) << 16) | ((mbedtls_mpi_uint) ( 0x42 ) << 24),
((mbedtls_mpi_uint) ( 0x11 ) << 0) | ((mbedtls_mpi_uint) ( 0x81 ) << 8) | ((mbedtls_mpi_uint) ( 0x91 ) << 16) | ((mbedtls_mpi_uint) ( 0x77 ) << 24), ((mbedtls_mpi_uint) ( 0x21 ) << 0) | ((mbedtls_mpi_uint) ( 0x46 ) << 8) | ((mbedtls_mpi_uint) ( 0x46 ) << 16) | ((mbedtls_mpi_uint) ( 0x0E ) << 24),
((mbedtls_mpi_uint) ( 0x28 ) << 0) | ((mbedtls_mpi_uint) ( 0x29 ) << 8) | ((mbedtls_mpi_uint) ( 0x91 ) << 16) | ((mbedtls_mpi_uint) ( 0xF9 ) << 24), ((mbedtls_mpi_uint) ( 0x4F ) << 0) | ((mbedtls_mpi_uint) ( 0x05 ) << 8) | ((mbedtls_mpi_uint) ( 0x9C ) << 16) | ((mbedtls_mpi_uint) ( 0xE1 ) << 24),
((mbedtls_mpi_uint) ( 0x64 ) << 0) | ((mbedtls_mpi_uint) ( 0x58 ) << 8) | ((mbedtls_mpi_uint) ( 0xEC ) << 16) | ((mbedtls_mpi_uint) ( 0xFE ) << 24), ((mbedtls_mpi_uint) ( 0x29 ) << 0) | ((mbedtls_mpi_uint) ( 0x0B ) << 8) | ((mbedtls_mpi_uint) ( 0xB7 ) << 16) | ((mbedtls_mpi_uint) ( 0x62 ) << 24),
((mbedtls_mpi_uint) ( 0x52 ) << 0) | ((mbedtls_mpi_uint) ( 0xD5 ) << 8) | ((mbedtls_mpi_uint) ( 0xCF ) << 16) | ((mbedtls_mpi_uint) ( 0x95 ) << 24), ((mbedtls_mpi_uint) ( 0x8E ) << 0) | ((mbedtls_mpi_uint) ( 0xEB ) << 8) | ((mbedtls_mpi_uint) ( 0xB1 ) << 16) | ((mbedtls_mpi_uint) ( 0x5C ) << 24),
((mbedtls_mpi_uint) ( 0xA4 ) << 0) | ((mbedtls_mpi_uint) ( 0xC2 ) << 8) | ((mbedtls_mpi_uint) ( 0xF9 ) << 16) | ((mbedtls_mpi_uint) ( 0x20 ) << 24), ((mbedtls_mpi_uint) ( 0x75 ) << 0) | ((mbedtls_mpi_uint) ( 0x1D ) << 8) | ((mbedtls_mpi_uint) ( 0xBE ) << 16) | ((mbedtls_mpi_uint) ( 0x8A ) << 24),
}

Definition at line 434 of file ecp_curves.c.

◆ brainpoolP384r1_n

const mbedtls_mpi_uint brainpoolP384r1_n[]
static
Initial value:
= {
((mbedtls_mpi_uint) ( 0x65 ) << 0) | ((mbedtls_mpi_uint) ( 0x65 ) << 8) | ((mbedtls_mpi_uint) ( 0x04 ) << 16) | ((mbedtls_mpi_uint) ( 0xE9 ) << 24), ((mbedtls_mpi_uint) ( 0x02 ) << 0) | ((mbedtls_mpi_uint) ( 0x32 ) << 8) | ((mbedtls_mpi_uint) ( 0x88 ) << 16) | ((mbedtls_mpi_uint) ( 0x3B ) << 24),
((mbedtls_mpi_uint) ( 0x10 ) << 0) | ((mbedtls_mpi_uint) ( 0xC3 ) << 8) | ((mbedtls_mpi_uint) ( 0x7F ) << 16) | ((mbedtls_mpi_uint) ( 0x6B ) << 24), ((mbedtls_mpi_uint) ( 0xAF ) << 0) | ((mbedtls_mpi_uint) ( 0xB6 ) << 8) | ((mbedtls_mpi_uint) ( 0x3A ) << 16) | ((mbedtls_mpi_uint) ( 0xCF ) << 24),
((mbedtls_mpi_uint) ( 0xA7 ) << 0) | ((mbedtls_mpi_uint) ( 0x25 ) << 8) | ((mbedtls_mpi_uint) ( 0x04 ) << 16) | ((mbedtls_mpi_uint) ( 0xAC ) << 24), ((mbedtls_mpi_uint) ( 0x6C ) << 0) | ((mbedtls_mpi_uint) ( 0x6E ) << 8) | ((mbedtls_mpi_uint) ( 0x16 ) << 16) | ((mbedtls_mpi_uint) ( 0x1F ) << 24),
((mbedtls_mpi_uint) ( 0xB3 ) << 0) | ((mbedtls_mpi_uint) ( 0x56 ) << 8) | ((mbedtls_mpi_uint) ( 0x54 ) << 16) | ((mbedtls_mpi_uint) ( 0xED ) << 24), ((mbedtls_mpi_uint) ( 0x09 ) << 0) | ((mbedtls_mpi_uint) ( 0x71 ) << 8) | ((mbedtls_mpi_uint) ( 0x2F ) << 16) | ((mbedtls_mpi_uint) ( 0x15 ) << 24),
((mbedtls_mpi_uint) ( 0xDF ) << 0) | ((mbedtls_mpi_uint) ( 0x41 ) << 8) | ((mbedtls_mpi_uint) ( 0xE6 ) << 16) | ((mbedtls_mpi_uint) ( 0x50 ) << 24), ((mbedtls_mpi_uint) ( 0x7E ) << 0) | ((mbedtls_mpi_uint) ( 0x6F ) << 8) | ((mbedtls_mpi_uint) ( 0x5D ) << 16) | ((mbedtls_mpi_uint) ( 0x0F ) << 24),
((mbedtls_mpi_uint) ( 0x28 ) << 0) | ((mbedtls_mpi_uint) ( 0x6D ) << 8) | ((mbedtls_mpi_uint) ( 0x38 ) << 16) | ((mbedtls_mpi_uint) ( 0xA3 ) << 24), ((mbedtls_mpi_uint) ( 0x82 ) << 0) | ((mbedtls_mpi_uint) ( 0x1E ) << 8) | ((mbedtls_mpi_uint) ( 0xB9 ) << 16) | ((mbedtls_mpi_uint) ( 0x8C ) << 24),
}

Definition at line 442 of file ecp_curves.c.

◆ brainpoolP384r1_p

const mbedtls_mpi_uint brainpoolP384r1_p[]
static
Initial value:
= {
((mbedtls_mpi_uint) ( 0x53 ) << 0) | ((mbedtls_mpi_uint) ( 0xEC ) << 8) | ((mbedtls_mpi_uint) ( 0x07 ) << 16) | ((mbedtls_mpi_uint) ( 0x31 ) << 24), ((mbedtls_mpi_uint) ( 0x13 ) << 0) | ((mbedtls_mpi_uint) ( 0x00 ) << 8) | ((mbedtls_mpi_uint) ( 0x47 ) << 16) | ((mbedtls_mpi_uint) ( 0x87 ) << 24),
((mbedtls_mpi_uint) ( 0x71 ) << 0) | ((mbedtls_mpi_uint) ( 0x1A ) << 8) | ((mbedtls_mpi_uint) ( 0x1D ) << 16) | ((mbedtls_mpi_uint) ( 0x90 ) << 24), ((mbedtls_mpi_uint) ( 0x29 ) << 0) | ((mbedtls_mpi_uint) ( 0xA7 ) << 8) | ((mbedtls_mpi_uint) ( 0xD3 ) << 16) | ((mbedtls_mpi_uint) ( 0xAC ) << 24),
((mbedtls_mpi_uint) ( 0x23 ) << 0) | ((mbedtls_mpi_uint) ( 0x11 ) << 8) | ((mbedtls_mpi_uint) ( 0xB7 ) << 16) | ((mbedtls_mpi_uint) ( 0x7F ) << 24), ((mbedtls_mpi_uint) ( 0x19 ) << 0) | ((mbedtls_mpi_uint) ( 0xDA ) << 8) | ((mbedtls_mpi_uint) ( 0xB1 ) << 16) | ((mbedtls_mpi_uint) ( 0x12 ) << 24),
((mbedtls_mpi_uint) ( 0xB4 ) << 0) | ((mbedtls_mpi_uint) ( 0x56 ) << 8) | ((mbedtls_mpi_uint) ( 0x54 ) << 16) | ((mbedtls_mpi_uint) ( 0xED ) << 24), ((mbedtls_mpi_uint) ( 0x09 ) << 0) | ((mbedtls_mpi_uint) ( 0x71 ) << 8) | ((mbedtls_mpi_uint) ( 0x2F ) << 16) | ((mbedtls_mpi_uint) ( 0x15 ) << 24),
((mbedtls_mpi_uint) ( 0xDF ) << 0) | ((mbedtls_mpi_uint) ( 0x41 ) << 8) | ((mbedtls_mpi_uint) ( 0xE6 ) << 16) | ((mbedtls_mpi_uint) ( 0x50 ) << 24), ((mbedtls_mpi_uint) ( 0x7E ) << 0) | ((mbedtls_mpi_uint) ( 0x6F ) << 8) | ((mbedtls_mpi_uint) ( 0x5D ) << 16) | ((mbedtls_mpi_uint) ( 0x0F ) << 24),
((mbedtls_mpi_uint) ( 0x28 ) << 0) | ((mbedtls_mpi_uint) ( 0x6D ) << 8) | ((mbedtls_mpi_uint) ( 0x38 ) << 16) | ((mbedtls_mpi_uint) ( 0xA3 ) << 24), ((mbedtls_mpi_uint) ( 0x82 ) << 0) | ((mbedtls_mpi_uint) ( 0x1E ) << 8) | ((mbedtls_mpi_uint) ( 0xB9 ) << 16) | ((mbedtls_mpi_uint) ( 0x8C ) << 24),
}

Definition at line 402 of file ecp_curves.c.

◆ brainpoolP512r1_a

const mbedtls_mpi_uint brainpoolP512r1_a[]
static
Initial value:
= {
((mbedtls_mpi_uint) ( 0xCA ) << 0) | ((mbedtls_mpi_uint) ( 0x94 ) << 8) | ((mbedtls_mpi_uint) ( 0xFC ) << 16) | ((mbedtls_mpi_uint) ( 0x77 ) << 24), ((mbedtls_mpi_uint) ( 0x4D ) << 0) | ((mbedtls_mpi_uint) ( 0xAC ) << 8) | ((mbedtls_mpi_uint) ( 0xC1 ) << 16) | ((mbedtls_mpi_uint) ( 0xE7 ) << 24),
((mbedtls_mpi_uint) ( 0xB9 ) << 0) | ((mbedtls_mpi_uint) ( 0xC7 ) << 8) | ((mbedtls_mpi_uint) ( 0xF2 ) << 16) | ((mbedtls_mpi_uint) ( 0x2B ) << 24), ((mbedtls_mpi_uint) ( 0xA7 ) << 0) | ((mbedtls_mpi_uint) ( 0x17 ) << 8) | ((mbedtls_mpi_uint) ( 0x11 ) << 16) | ((mbedtls_mpi_uint) ( 0x7F ) << 24),
((mbedtls_mpi_uint) ( 0xB5 ) << 0) | ((mbedtls_mpi_uint) ( 0xC8 ) << 8) | ((mbedtls_mpi_uint) ( 0x9A ) << 16) | ((mbedtls_mpi_uint) ( 0x8B ) << 24), ((mbedtls_mpi_uint) ( 0xC9 ) << 0) | ((mbedtls_mpi_uint) ( 0xF1 ) << 8) | ((mbedtls_mpi_uint) ( 0x2E ) << 16) | ((mbedtls_mpi_uint) ( 0x0A ) << 24),
((mbedtls_mpi_uint) ( 0xA1 ) << 0) | ((mbedtls_mpi_uint) ( 0x3A ) << 8) | ((mbedtls_mpi_uint) ( 0x25 ) << 16) | ((mbedtls_mpi_uint) ( 0xA8 ) << 24), ((mbedtls_mpi_uint) ( 0x5A ) << 0) | ((mbedtls_mpi_uint) ( 0x5D ) << 8) | ((mbedtls_mpi_uint) ( 0xED ) << 16) | ((mbedtls_mpi_uint) ( 0x2D ) << 24),
((mbedtls_mpi_uint) ( 0xBC ) << 0) | ((mbedtls_mpi_uint) ( 0x63 ) << 8) | ((mbedtls_mpi_uint) ( 0x98 ) << 16) | ((mbedtls_mpi_uint) ( 0xEA ) << 24), ((mbedtls_mpi_uint) ( 0xCA ) << 0) | ((mbedtls_mpi_uint) ( 0x41 ) << 8) | ((mbedtls_mpi_uint) ( 0x34 ) << 16) | ((mbedtls_mpi_uint) ( 0xA8 ) << 24),
((mbedtls_mpi_uint) ( 0x10 ) << 0) | ((mbedtls_mpi_uint) ( 0x16 ) << 8) | ((mbedtls_mpi_uint) ( 0xF9 ) << 16) | ((mbedtls_mpi_uint) ( 0x3D ) << 24), ((mbedtls_mpi_uint) ( 0x8D ) << 0) | ((mbedtls_mpi_uint) ( 0xDD ) << 8) | ((mbedtls_mpi_uint) ( 0xCB ) << 16) | ((mbedtls_mpi_uint) ( 0x94 ) << 24),
((mbedtls_mpi_uint) ( 0xC5 ) << 0) | ((mbedtls_mpi_uint) ( 0x4C ) << 8) | ((mbedtls_mpi_uint) ( 0x23 ) << 16) | ((mbedtls_mpi_uint) ( 0xAC ) << 24), ((mbedtls_mpi_uint) ( 0x45 ) << 0) | ((mbedtls_mpi_uint) ( 0x71 ) << 8) | ((mbedtls_mpi_uint) ( 0x32 ) << 16) | ((mbedtls_mpi_uint) ( 0xE2 ) << 24),
((mbedtls_mpi_uint) ( 0x89 ) << 0) | ((mbedtls_mpi_uint) ( 0x3B ) << 8) | ((mbedtls_mpi_uint) ( 0x60 ) << 16) | ((mbedtls_mpi_uint) ( 0x8B ) << 24), ((mbedtls_mpi_uint) ( 0x31 ) << 0) | ((mbedtls_mpi_uint) ( 0xA3 ) << 8) | ((mbedtls_mpi_uint) ( 0x30 ) << 16) | ((mbedtls_mpi_uint) ( 0x78 ) << 24),
}

Definition at line 466 of file ecp_curves.c.

◆ brainpoolP512r1_b

const mbedtls_mpi_uint brainpoolP512r1_b[]
static
Initial value:
= {
((mbedtls_mpi_uint) ( 0x23 ) << 0) | ((mbedtls_mpi_uint) ( 0xF7 ) << 8) | ((mbedtls_mpi_uint) ( 0x16 ) << 16) | ((mbedtls_mpi_uint) ( 0x80 ) << 24), ((mbedtls_mpi_uint) ( 0x63 ) << 0) | ((mbedtls_mpi_uint) ( 0xBD ) << 8) | ((mbedtls_mpi_uint) ( 0x09 ) << 16) | ((mbedtls_mpi_uint) ( 0x28 ) << 24),
((mbedtls_mpi_uint) ( 0xDD ) << 0) | ((mbedtls_mpi_uint) ( 0xE5 ) << 8) | ((mbedtls_mpi_uint) ( 0xBA ) << 16) | ((mbedtls_mpi_uint) ( 0x5E ) << 24), ((mbedtls_mpi_uint) ( 0xB7 ) << 0) | ((mbedtls_mpi_uint) ( 0x50 ) << 8) | ((mbedtls_mpi_uint) ( 0x40 ) << 16) | ((mbedtls_mpi_uint) ( 0x98 ) << 24),
((mbedtls_mpi_uint) ( 0x67 ) << 0) | ((mbedtls_mpi_uint) ( 0x3E ) << 8) | ((mbedtls_mpi_uint) ( 0x08 ) << 16) | ((mbedtls_mpi_uint) ( 0xDC ) << 24), ((mbedtls_mpi_uint) ( 0xCA ) << 0) | ((mbedtls_mpi_uint) ( 0x94 ) << 8) | ((mbedtls_mpi_uint) ( 0xFC ) << 16) | ((mbedtls_mpi_uint) ( 0x77 ) << 24),
((mbedtls_mpi_uint) ( 0x4D ) << 0) | ((mbedtls_mpi_uint) ( 0xAC ) << 8) | ((mbedtls_mpi_uint) ( 0xC1 ) << 16) | ((mbedtls_mpi_uint) ( 0xE7 ) << 24), ((mbedtls_mpi_uint) ( 0xB9 ) << 0) | ((mbedtls_mpi_uint) ( 0xC7 ) << 8) | ((mbedtls_mpi_uint) ( 0xF2 ) << 16) | ((mbedtls_mpi_uint) ( 0x2B ) << 24),
((mbedtls_mpi_uint) ( 0xA7 ) << 0) | ((mbedtls_mpi_uint) ( 0x17 ) << 8) | ((mbedtls_mpi_uint) ( 0x11 ) << 16) | ((mbedtls_mpi_uint) ( 0x7F ) << 24), ((mbedtls_mpi_uint) ( 0xB5 ) << 0) | ((mbedtls_mpi_uint) ( 0xC8 ) << 8) | ((mbedtls_mpi_uint) ( 0x9A ) << 16) | ((mbedtls_mpi_uint) ( 0x8B ) << 24),
((mbedtls_mpi_uint) ( 0xC9 ) << 0) | ((mbedtls_mpi_uint) ( 0xF1 ) << 8) | ((mbedtls_mpi_uint) ( 0x2E ) << 16) | ((mbedtls_mpi_uint) ( 0x0A ) << 24), ((mbedtls_mpi_uint) ( 0xA1 ) << 0) | ((mbedtls_mpi_uint) ( 0x3A ) << 8) | ((mbedtls_mpi_uint) ( 0x25 ) << 16) | ((mbedtls_mpi_uint) ( 0xA8 ) << 24),
((mbedtls_mpi_uint) ( 0x5A ) << 0) | ((mbedtls_mpi_uint) ( 0x5D ) << 8) | ((mbedtls_mpi_uint) ( 0xED ) << 16) | ((mbedtls_mpi_uint) ( 0x2D ) << 24), ((mbedtls_mpi_uint) ( 0xBC ) << 0) | ((mbedtls_mpi_uint) ( 0x63 ) << 8) | ((mbedtls_mpi_uint) ( 0x98 ) << 16) | ((mbedtls_mpi_uint) ( 0xEA ) << 24),
((mbedtls_mpi_uint) ( 0xCA ) << 0) | ((mbedtls_mpi_uint) ( 0x41 ) << 8) | ((mbedtls_mpi_uint) ( 0x34 ) << 16) | ((mbedtls_mpi_uint) ( 0xA8 ) << 24), ((mbedtls_mpi_uint) ( 0x10 ) << 0) | ((mbedtls_mpi_uint) ( 0x16 ) << 8) | ((mbedtls_mpi_uint) ( 0xF9 ) << 16) | ((mbedtls_mpi_uint) ( 0x3D ) << 24),
}

Definition at line 476 of file ecp_curves.c.

◆ brainpoolP512r1_gx

const mbedtls_mpi_uint brainpoolP512r1_gx[]
static
Initial value:
= {
((mbedtls_mpi_uint) ( 0x22 ) << 0) | ((mbedtls_mpi_uint) ( 0xF8 ) << 8) | ((mbedtls_mpi_uint) ( 0xB9 ) << 16) | ((mbedtls_mpi_uint) ( 0xBC ) << 24), ((mbedtls_mpi_uint) ( 0x09 ) << 0) | ((mbedtls_mpi_uint) ( 0x22 ) << 8) | ((mbedtls_mpi_uint) ( 0x35 ) << 16) | ((mbedtls_mpi_uint) ( 0x8B ) << 24),
((mbedtls_mpi_uint) ( 0x68 ) << 0) | ((mbedtls_mpi_uint) ( 0x5E ) << 8) | ((mbedtls_mpi_uint) ( 0x6A ) << 16) | ((mbedtls_mpi_uint) ( 0x40 ) << 24), ((mbedtls_mpi_uint) ( 0x47 ) << 0) | ((mbedtls_mpi_uint) ( 0x50 ) << 8) | ((mbedtls_mpi_uint) ( 0x6D ) << 16) | ((mbedtls_mpi_uint) ( 0x7C ) << 24),
((mbedtls_mpi_uint) ( 0x5F ) << 0) | ((mbedtls_mpi_uint) ( 0x7D ) << 8) | ((mbedtls_mpi_uint) ( 0xB9 ) << 16) | ((mbedtls_mpi_uint) ( 0x93 ) << 24), ((mbedtls_mpi_uint) ( 0x7B ) << 0) | ((mbedtls_mpi_uint) ( 0x68 ) << 8) | ((mbedtls_mpi_uint) ( 0xD1 ) << 16) | ((mbedtls_mpi_uint) ( 0x50 ) << 24),
((mbedtls_mpi_uint) ( 0x8D ) << 0) | ((mbedtls_mpi_uint) ( 0xD4 ) << 8) | ((mbedtls_mpi_uint) ( 0xD0 ) << 16) | ((mbedtls_mpi_uint) ( 0xE2 ) << 24), ((mbedtls_mpi_uint) ( 0x78 ) << 0) | ((mbedtls_mpi_uint) ( 0x1F ) << 8) | ((mbedtls_mpi_uint) ( 0x3B ) << 16) | ((mbedtls_mpi_uint) ( 0xFF ) << 24),
((mbedtls_mpi_uint) ( 0x8E ) << 0) | ((mbedtls_mpi_uint) ( 0x09 ) << 8) | ((mbedtls_mpi_uint) ( 0xD0 ) << 16) | ((mbedtls_mpi_uint) ( 0xF4 ) << 24), ((mbedtls_mpi_uint) ( 0xEE ) << 0) | ((mbedtls_mpi_uint) ( 0x62 ) << 8) | ((mbedtls_mpi_uint) ( 0x3B ) << 16) | ((mbedtls_mpi_uint) ( 0xB4 ) << 24),
((mbedtls_mpi_uint) ( 0xC1 ) << 0) | ((mbedtls_mpi_uint) ( 0x16 ) << 8) | ((mbedtls_mpi_uint) ( 0xD9 ) << 16) | ((mbedtls_mpi_uint) ( 0xB5 ) << 24), ((mbedtls_mpi_uint) ( 0x70 ) << 0) | ((mbedtls_mpi_uint) ( 0x9F ) << 8) | ((mbedtls_mpi_uint) ( 0xED ) << 16) | ((mbedtls_mpi_uint) ( 0x85 ) << 24),
((mbedtls_mpi_uint) ( 0x93 ) << 0) | ((mbedtls_mpi_uint) ( 0x6A ) << 8) | ((mbedtls_mpi_uint) ( 0x4C ) << 16) | ((mbedtls_mpi_uint) ( 0x9C ) << 24), ((mbedtls_mpi_uint) ( 0x2E ) << 0) | ((mbedtls_mpi_uint) ( 0x32 ) << 8) | ((mbedtls_mpi_uint) ( 0x21 ) << 16) | ((mbedtls_mpi_uint) ( 0x5A ) << 24),
((mbedtls_mpi_uint) ( 0x64 ) << 0) | ((mbedtls_mpi_uint) ( 0xD9 ) << 8) | ((mbedtls_mpi_uint) ( 0x2E ) << 16) | ((mbedtls_mpi_uint) ( 0xD8 ) << 24), ((mbedtls_mpi_uint) ( 0xBD ) << 0) | ((mbedtls_mpi_uint) ( 0xE4 ) << 8) | ((mbedtls_mpi_uint) ( 0xAE ) << 16) | ((mbedtls_mpi_uint) ( 0x81 ) << 24),
}

Definition at line 486 of file ecp_curves.c.

◆ brainpoolP512r1_gy

const mbedtls_mpi_uint brainpoolP512r1_gy[]
static
Initial value:
= {
((mbedtls_mpi_uint) ( 0x92 ) << 0) | ((mbedtls_mpi_uint) ( 0x08 ) << 8) | ((mbedtls_mpi_uint) ( 0xD8 ) << 16) | ((mbedtls_mpi_uint) ( 0x3A ) << 24), ((mbedtls_mpi_uint) ( 0x0F ) << 0) | ((mbedtls_mpi_uint) ( 0x1E ) << 8) | ((mbedtls_mpi_uint) ( 0xCD ) << 16) | ((mbedtls_mpi_uint) ( 0x78 ) << 24),
((mbedtls_mpi_uint) ( 0x06 ) << 0) | ((mbedtls_mpi_uint) ( 0x54 ) << 8) | ((mbedtls_mpi_uint) ( 0xF0 ) << 16) | ((mbedtls_mpi_uint) ( 0xA8 ) << 24), ((mbedtls_mpi_uint) ( 0x2F ) << 0) | ((mbedtls_mpi_uint) ( 0x2B ) << 8) | ((mbedtls_mpi_uint) ( 0xCA ) << 16) | ((mbedtls_mpi_uint) ( 0xD1 ) << 24),
((mbedtls_mpi_uint) ( 0xAE ) << 0) | ((mbedtls_mpi_uint) ( 0x63 ) << 8) | ((mbedtls_mpi_uint) ( 0x27 ) << 16) | ((mbedtls_mpi_uint) ( 0x8A ) << 24), ((mbedtls_mpi_uint) ( 0xD8 ) << 0) | ((mbedtls_mpi_uint) ( 0x4B ) << 8) | ((mbedtls_mpi_uint) ( 0xCA ) << 16) | ((mbedtls_mpi_uint) ( 0x5B ) << 24),
((mbedtls_mpi_uint) ( 0x5E ) << 0) | ((mbedtls_mpi_uint) ( 0x48 ) << 8) | ((mbedtls_mpi_uint) ( 0x5F ) << 16) | ((mbedtls_mpi_uint) ( 0x4A ) << 24), ((mbedtls_mpi_uint) ( 0x49 ) << 0) | ((mbedtls_mpi_uint) ( 0xDE ) << 8) | ((mbedtls_mpi_uint) ( 0xDC ) << 16) | ((mbedtls_mpi_uint) ( 0xB2 ) << 24),
((mbedtls_mpi_uint) ( 0x11 ) << 0) | ((mbedtls_mpi_uint) ( 0x81 ) << 8) | ((mbedtls_mpi_uint) ( 0x1F ) << 16) | ((mbedtls_mpi_uint) ( 0x88 ) << 24), ((mbedtls_mpi_uint) ( 0x5B ) << 0) | ((mbedtls_mpi_uint) ( 0xC5 ) << 8) | ((mbedtls_mpi_uint) ( 0x00 ) << 16) | ((mbedtls_mpi_uint) ( 0xA0 ) << 24),
((mbedtls_mpi_uint) ( 0x1A ) << 0) | ((mbedtls_mpi_uint) ( 0x7B ) << 8) | ((mbedtls_mpi_uint) ( 0xA5 ) << 16) | ((mbedtls_mpi_uint) ( 0x24 ) << 24), ((mbedtls_mpi_uint) ( 0x00 ) << 0) | ((mbedtls_mpi_uint) ( 0xF7 ) << 8) | ((mbedtls_mpi_uint) ( 0x09 ) << 16) | ((mbedtls_mpi_uint) ( 0xF2 ) << 24),
((mbedtls_mpi_uint) ( 0xFD ) << 0) | ((mbedtls_mpi_uint) ( 0x22 ) << 8) | ((mbedtls_mpi_uint) ( 0x78 ) << 16) | ((mbedtls_mpi_uint) ( 0xCF ) << 24), ((mbedtls_mpi_uint) ( 0xA9 ) << 0) | ((mbedtls_mpi_uint) ( 0xBF ) << 8) | ((mbedtls_mpi_uint) ( 0xEA ) << 16) | ((mbedtls_mpi_uint) ( 0xC0 ) << 24),
((mbedtls_mpi_uint) ( 0xEC ) << 0) | ((mbedtls_mpi_uint) ( 0x32 ) << 8) | ((mbedtls_mpi_uint) ( 0x63 ) << 16) | ((mbedtls_mpi_uint) ( 0x56 ) << 24), ((mbedtls_mpi_uint) ( 0x5D ) << 0) | ((mbedtls_mpi_uint) ( 0x38 ) << 8) | ((mbedtls_mpi_uint) ( 0xDE ) << 16) | ((mbedtls_mpi_uint) ( 0x7D ) << 24),
}

Definition at line 496 of file ecp_curves.c.

◆ brainpoolP512r1_n

const mbedtls_mpi_uint brainpoolP512r1_n[]
static
Initial value:
= {
((mbedtls_mpi_uint) ( 0x69 ) << 0) | ((mbedtls_mpi_uint) ( 0x00 ) << 8) | ((mbedtls_mpi_uint) ( 0xA9 ) << 16) | ((mbedtls_mpi_uint) ( 0x9C ) << 24), ((mbedtls_mpi_uint) ( 0x82 ) << 0) | ((mbedtls_mpi_uint) ( 0x96 ) << 8) | ((mbedtls_mpi_uint) ( 0x87 ) << 16) | ((mbedtls_mpi_uint) ( 0xB5 ) << 24),
((mbedtls_mpi_uint) ( 0xDD ) << 0) | ((mbedtls_mpi_uint) ( 0xDA ) << 8) | ((mbedtls_mpi_uint) ( 0x5D ) << 16) | ((mbedtls_mpi_uint) ( 0x08 ) << 24), ((mbedtls_mpi_uint) ( 0x81 ) << 0) | ((mbedtls_mpi_uint) ( 0xD3 ) << 8) | ((mbedtls_mpi_uint) ( 0xB1 ) << 16) | ((mbedtls_mpi_uint) ( 0x1D ) << 24),
((mbedtls_mpi_uint) ( 0x47 ) << 0) | ((mbedtls_mpi_uint) ( 0x10 ) << 8) | ((mbedtls_mpi_uint) ( 0xAC ) << 16) | ((mbedtls_mpi_uint) ( 0x7F ) << 24), ((mbedtls_mpi_uint) ( 0x19 ) << 0) | ((mbedtls_mpi_uint) ( 0x61 ) << 8) | ((mbedtls_mpi_uint) ( 0x86 ) << 16) | ((mbedtls_mpi_uint) ( 0x41 ) << 24),
((mbedtls_mpi_uint) ( 0x19 ) << 0) | ((mbedtls_mpi_uint) ( 0x26 ) << 8) | ((mbedtls_mpi_uint) ( 0xA9 ) << 16) | ((mbedtls_mpi_uint) ( 0x4C ) << 24), ((mbedtls_mpi_uint) ( 0x41 ) << 0) | ((mbedtls_mpi_uint) ( 0x5C ) << 8) | ((mbedtls_mpi_uint) ( 0x3E ) << 16) | ((mbedtls_mpi_uint) ( 0x55 ) << 24),
((mbedtls_mpi_uint) ( 0x70 ) << 0) | ((mbedtls_mpi_uint) ( 0x08 ) << 8) | ((mbedtls_mpi_uint) ( 0x33 ) << 16) | ((mbedtls_mpi_uint) ( 0x70 ) << 24), ((mbedtls_mpi_uint) ( 0xCA ) << 0) | ((mbedtls_mpi_uint) ( 0x9C ) << 8) | ((mbedtls_mpi_uint) ( 0x63 ) << 16) | ((mbedtls_mpi_uint) ( 0xD6 ) << 24),
((mbedtls_mpi_uint) ( 0x0E ) << 0) | ((mbedtls_mpi_uint) ( 0xD2 ) << 8) | ((mbedtls_mpi_uint) ( 0xC9 ) << 16) | ((mbedtls_mpi_uint) ( 0xB3 ) << 24), ((mbedtls_mpi_uint) ( 0xB3 ) << 0) | ((mbedtls_mpi_uint) ( 0x8D ) << 8) | ((mbedtls_mpi_uint) ( 0x30 ) << 16) | ((mbedtls_mpi_uint) ( 0xCB ) << 24),
((mbedtls_mpi_uint) ( 0x07 ) << 0) | ((mbedtls_mpi_uint) ( 0xFC ) << 8) | ((mbedtls_mpi_uint) ( 0xC9 ) << 16) | ((mbedtls_mpi_uint) ( 0x33 ) << 24), ((mbedtls_mpi_uint) ( 0xAE ) << 0) | ((mbedtls_mpi_uint) ( 0xE6 ) << 8) | ((mbedtls_mpi_uint) ( 0xD4 ) << 16) | ((mbedtls_mpi_uint) ( 0x3F ) << 24),
((mbedtls_mpi_uint) ( 0x8B ) << 0) | ((mbedtls_mpi_uint) ( 0xC4 ) << 8) | ((mbedtls_mpi_uint) ( 0xE9 ) << 16) | ((mbedtls_mpi_uint) ( 0xDB ) << 24), ((mbedtls_mpi_uint) ( 0xB8 ) << 0) | ((mbedtls_mpi_uint) ( 0x9D ) << 8) | ((mbedtls_mpi_uint) ( 0xDD ) << 16) | ((mbedtls_mpi_uint) ( 0xAA ) << 24),
}

Definition at line 506 of file ecp_curves.c.

◆ brainpoolP512r1_p

const mbedtls_mpi_uint brainpoolP512r1_p[]
static
Initial value:
= {
((mbedtls_mpi_uint) ( 0xF3 ) << 0) | ((mbedtls_mpi_uint) ( 0x48 ) << 8) | ((mbedtls_mpi_uint) ( 0x3A ) << 16) | ((mbedtls_mpi_uint) ( 0x58 ) << 24), ((mbedtls_mpi_uint) ( 0x56 ) << 0) | ((mbedtls_mpi_uint) ( 0x60 ) << 8) | ((mbedtls_mpi_uint) ( 0xAA ) << 16) | ((mbedtls_mpi_uint) ( 0x28 ) << 24),
((mbedtls_mpi_uint) ( 0x85 ) << 0) | ((mbedtls_mpi_uint) ( 0xC6 ) << 8) | ((mbedtls_mpi_uint) ( 0x82 ) << 16) | ((mbedtls_mpi_uint) ( 0x2D ) << 24), ((mbedtls_mpi_uint) ( 0x2F ) << 0) | ((mbedtls_mpi_uint) ( 0xFF ) << 8) | ((mbedtls_mpi_uint) ( 0x81 ) << 16) | ((mbedtls_mpi_uint) ( 0x28 ) << 24),
((mbedtls_mpi_uint) ( 0xE6 ) << 0) | ((mbedtls_mpi_uint) ( 0x80 ) << 8) | ((mbedtls_mpi_uint) ( 0xA3 ) << 16) | ((mbedtls_mpi_uint) ( 0xE6 ) << 24), ((mbedtls_mpi_uint) ( 0x2A ) << 0) | ((mbedtls_mpi_uint) ( 0xA1 ) << 8) | ((mbedtls_mpi_uint) ( 0xCD ) << 16) | ((mbedtls_mpi_uint) ( 0xAE ) << 24),
((mbedtls_mpi_uint) ( 0x42 ) << 0) | ((mbedtls_mpi_uint) ( 0x68 ) << 8) | ((mbedtls_mpi_uint) ( 0xC6 ) << 16) | ((mbedtls_mpi_uint) ( 0x9B ) << 24), ((mbedtls_mpi_uint) ( 0x00 ) << 0) | ((mbedtls_mpi_uint) ( 0x9B ) << 8) | ((mbedtls_mpi_uint) ( 0x4D ) << 16) | ((mbedtls_mpi_uint) ( 0x7D ) << 24),
((mbedtls_mpi_uint) ( 0x71 ) << 0) | ((mbedtls_mpi_uint) ( 0x08 ) << 8) | ((mbedtls_mpi_uint) ( 0x33 ) << 16) | ((mbedtls_mpi_uint) ( 0x70 ) << 24), ((mbedtls_mpi_uint) ( 0xCA ) << 0) | ((mbedtls_mpi_uint) ( 0x9C ) << 8) | ((mbedtls_mpi_uint) ( 0x63 ) << 16) | ((mbedtls_mpi_uint) ( 0xD6 ) << 24),
((mbedtls_mpi_uint) ( 0x0E ) << 0) | ((mbedtls_mpi_uint) ( 0xD2 ) << 8) | ((mbedtls_mpi_uint) ( 0xC9 ) << 16) | ((mbedtls_mpi_uint) ( 0xB3 ) << 24), ((mbedtls_mpi_uint) ( 0xB3 ) << 0) | ((mbedtls_mpi_uint) ( 0x8D ) << 8) | ((mbedtls_mpi_uint) ( 0x30 ) << 16) | ((mbedtls_mpi_uint) ( 0xCB ) << 24),
((mbedtls_mpi_uint) ( 0x07 ) << 0) | ((mbedtls_mpi_uint) ( 0xFC ) << 8) | ((mbedtls_mpi_uint) ( 0xC9 ) << 16) | ((mbedtls_mpi_uint) ( 0x33 ) << 24), ((mbedtls_mpi_uint) ( 0xAE ) << 0) | ((mbedtls_mpi_uint) ( 0xE6 ) << 8) | ((mbedtls_mpi_uint) ( 0xD4 ) << 16) | ((mbedtls_mpi_uint) ( 0x3F ) << 24),
((mbedtls_mpi_uint) ( 0x8B ) << 0) | ((mbedtls_mpi_uint) ( 0xC4 ) << 8) | ((mbedtls_mpi_uint) ( 0xE9 ) << 16) | ((mbedtls_mpi_uint) ( 0xDB ) << 24), ((mbedtls_mpi_uint) ( 0xB8 ) << 0) | ((mbedtls_mpi_uint) ( 0x9D ) << 8) | ((mbedtls_mpi_uint) ( 0xDD ) << 16) | ((mbedtls_mpi_uint) ( 0xAA ) << 24),
}

Definition at line 456 of file ecp_curves.c.

◆ curve25519_a24

const mbedtls_mpi_sint curve25519_a24 = 0x01DB42
static

Definition at line 647 of file ecp_curves.c.

Referenced by ecp_use_curve25519().

◆ curve25519_part_of_n

const unsigned char curve25519_part_of_n[]
static
Initial value:
= {
0x14, 0xDE, 0xF9, 0xDE, 0xA2, 0xF7, 0x9C, 0xD6,
0x58, 0x12, 0x63, 0x1A, 0x5C, 0xF5, 0xD3, 0xED,
}

Definition at line 648 of file ecp_curves.c.

Referenced by ecp_use_curve25519().

◆ curve448_a24

const mbedtls_mpi_sint curve448_a24 = 0x98AA
static

Definition at line 694 of file ecp_curves.c.

Referenced by ecp_use_curve448().

◆ curve448_part_of_n

const unsigned char curve448_part_of_n[]
static
Initial value:
= {
0x83, 0x35, 0xDC, 0x16, 0x3B, 0xB1, 0x24,
0xB6, 0x51, 0x29, 0xC9, 0x6F, 0xDE, 0x93,
0x3D, 0x8D, 0x72, 0x3A, 0x70, 0xAA, 0xDC,
0x87, 0x3D, 0x6D, 0x54, 0xA7, 0xBB, 0x0D,
}

Definition at line 695 of file ecp_curves.c.

Referenced by ecp_use_curve448().

◆ secp192k1_a

const mbedtls_mpi_uint secp192k1_a[]
static
Initial value:
= {
((mbedtls_mpi_uint) ( 0x00 ) << 0) | ((mbedtls_mpi_uint) ( 0x00 ) << 8) | ((mbedtls_mpi_uint) ( 0 ) << 16) | ((mbedtls_mpi_uint) ( 0 ) << 24),
}

Definition at line 267 of file ecp_curves.c.

◆ secp192k1_b

const mbedtls_mpi_uint secp192k1_b[]
static
Initial value:
= {
((mbedtls_mpi_uint) ( 0x03 ) << 0) | ((mbedtls_mpi_uint) ( 0x00 ) << 8) | ((mbedtls_mpi_uint) ( 0 ) << 16) | ((mbedtls_mpi_uint) ( 0 ) << 24),
}

Definition at line 270 of file ecp_curves.c.

◆ secp192k1_gx

const mbedtls_mpi_uint secp192k1_gx[]
static
Initial value:
= {
((mbedtls_mpi_uint) ( 0x7D ) << 0) | ((mbedtls_mpi_uint) ( 0x6C ) << 8) | ((mbedtls_mpi_uint) ( 0xE0 ) << 16) | ((mbedtls_mpi_uint) ( 0xEA ) << 24), ((mbedtls_mpi_uint) ( 0xB1 ) << 0) | ((mbedtls_mpi_uint) ( 0xD1 ) << 8) | ((mbedtls_mpi_uint) ( 0xA5 ) << 16) | ((mbedtls_mpi_uint) ( 0x1D ) << 24),
((mbedtls_mpi_uint) ( 0x34 ) << 0) | ((mbedtls_mpi_uint) ( 0xF4 ) << 8) | ((mbedtls_mpi_uint) ( 0xB7 ) << 16) | ((mbedtls_mpi_uint) ( 0x80 ) << 24), ((mbedtls_mpi_uint) ( 0x02 ) << 0) | ((mbedtls_mpi_uint) ( 0x7D ) << 8) | ((mbedtls_mpi_uint) ( 0xB0 ) << 16) | ((mbedtls_mpi_uint) ( 0x26 ) << 24),
((mbedtls_mpi_uint) ( 0xAE ) << 0) | ((mbedtls_mpi_uint) ( 0xE9 ) << 8) | ((mbedtls_mpi_uint) ( 0x57 ) << 16) | ((mbedtls_mpi_uint) ( 0xC0 ) << 24), ((mbedtls_mpi_uint) ( 0x0E ) << 0) | ((mbedtls_mpi_uint) ( 0xF1 ) << 8) | ((mbedtls_mpi_uint) ( 0x4F ) << 16) | ((mbedtls_mpi_uint) ( 0xDB ) << 24),
}

Definition at line 273 of file ecp_curves.c.

◆ secp192k1_gy

const mbedtls_mpi_uint secp192k1_gy[]
static
Initial value:
= {
((mbedtls_mpi_uint) ( 0x9D ) << 0) | ((mbedtls_mpi_uint) ( 0x2F ) << 8) | ((mbedtls_mpi_uint) ( 0x5E ) << 16) | ((mbedtls_mpi_uint) ( 0xD9 ) << 24), ((mbedtls_mpi_uint) ( 0x88 ) << 0) | ((mbedtls_mpi_uint) ( 0xAA ) << 8) | ((mbedtls_mpi_uint) ( 0x82 ) << 16) | ((mbedtls_mpi_uint) ( 0x40 ) << 24),
((mbedtls_mpi_uint) ( 0x34 ) << 0) | ((mbedtls_mpi_uint) ( 0x86 ) << 8) | ((mbedtls_mpi_uint) ( 0xBE ) << 16) | ((mbedtls_mpi_uint) ( 0x15 ) << 24), ((mbedtls_mpi_uint) ( 0xD0 ) << 0) | ((mbedtls_mpi_uint) ( 0x63 ) << 8) | ((mbedtls_mpi_uint) ( 0x41 ) << 16) | ((mbedtls_mpi_uint) ( 0x84 ) << 24),
((mbedtls_mpi_uint) ( 0xA7 ) << 0) | ((mbedtls_mpi_uint) ( 0x28 ) << 8) | ((mbedtls_mpi_uint) ( 0x56 ) << 16) | ((mbedtls_mpi_uint) ( 0x9C ) << 24), ((mbedtls_mpi_uint) ( 0x6D ) << 0) | ((mbedtls_mpi_uint) ( 0x2F ) << 8) | ((mbedtls_mpi_uint) ( 0x2F ) << 16) | ((mbedtls_mpi_uint) ( 0x9B ) << 24),
}

Definition at line 278 of file ecp_curves.c.

◆ secp192k1_n

const mbedtls_mpi_uint secp192k1_n[]
static
Initial value:
= {
((mbedtls_mpi_uint) ( 0x8D ) << 0) | ((mbedtls_mpi_uint) ( 0xFD ) << 8) | ((mbedtls_mpi_uint) ( 0xDE ) << 16) | ((mbedtls_mpi_uint) ( 0x74 ) << 24), ((mbedtls_mpi_uint) ( 0x6A ) << 0) | ((mbedtls_mpi_uint) ( 0x46 ) << 8) | ((mbedtls_mpi_uint) ( 0x69 ) << 16) | ((mbedtls_mpi_uint) ( 0x0F ) << 24),
((mbedtls_mpi_uint) ( 0x17 ) << 0) | ((mbedtls_mpi_uint) ( 0xFC ) << 8) | ((mbedtls_mpi_uint) ( 0xF2 ) << 16) | ((mbedtls_mpi_uint) ( 0x26 ) << 24), ((mbedtls_mpi_uint) ( 0xFE ) << 0) | ((mbedtls_mpi_uint) ( 0xFF ) << 8) | ((mbedtls_mpi_uint) ( 0xFF ) << 16) | ((mbedtls_mpi_uint) ( 0xFF ) << 24),
((mbedtls_mpi_uint) ( 0xFF ) << 0) | ((mbedtls_mpi_uint) ( 0xFF ) << 8) | ((mbedtls_mpi_uint) ( 0xFF ) << 16) | ((mbedtls_mpi_uint) ( 0xFF ) << 24), ((mbedtls_mpi_uint) ( 0xFF ) << 0) | ((mbedtls_mpi_uint) ( 0xFF ) << 8) | ((mbedtls_mpi_uint) ( 0xFF ) << 16) | ((mbedtls_mpi_uint) ( 0xFF ) << 24),
}

Definition at line 283 of file ecp_curves.c.

◆ secp192k1_p

const mbedtls_mpi_uint secp192k1_p[]
static
Initial value:
= {
((mbedtls_mpi_uint) ( 0x37 ) << 0) | ((mbedtls_mpi_uint) ( 0xEE ) << 8) | ((mbedtls_mpi_uint) ( 0xFF ) << 16) | ((mbedtls_mpi_uint) ( 0xFF ) << 24), ((mbedtls_mpi_uint) ( 0xFE ) << 0) | ((mbedtls_mpi_uint) ( 0xFF ) << 8) | ((mbedtls_mpi_uint) ( 0xFF ) << 16) | ((mbedtls_mpi_uint) ( 0xFF ) << 24),
((mbedtls_mpi_uint) ( 0xFF ) << 0) | ((mbedtls_mpi_uint) ( 0xFF ) << 8) | ((mbedtls_mpi_uint) ( 0xFF ) << 16) | ((mbedtls_mpi_uint) ( 0xFF ) << 24), ((mbedtls_mpi_uint) ( 0xFF ) << 0) | ((mbedtls_mpi_uint) ( 0xFF ) << 8) | ((mbedtls_mpi_uint) ( 0xFF ) << 16) | ((mbedtls_mpi_uint) ( 0xFF ) << 24),
((mbedtls_mpi_uint) ( 0xFF ) << 0) | ((mbedtls_mpi_uint) ( 0xFF ) << 8) | ((mbedtls_mpi_uint) ( 0xFF ) << 16) | ((mbedtls_mpi_uint) ( 0xFF ) << 24), ((mbedtls_mpi_uint) ( 0xFF ) << 0) | ((mbedtls_mpi_uint) ( 0xFF ) << 8) | ((mbedtls_mpi_uint) ( 0xFF ) << 16) | ((mbedtls_mpi_uint) ( 0xFF ) << 24),
}

Definition at line 262 of file ecp_curves.c.

◆ secp192r1_b

const mbedtls_mpi_uint secp192r1_b[]
static
Initial value:
= {
((mbedtls_mpi_uint) ( 0xB1 ) << 0) | ((mbedtls_mpi_uint) ( 0xB9 ) << 8) | ((mbedtls_mpi_uint) ( 0x46 ) << 16) | ((mbedtls_mpi_uint) ( 0xC1 ) << 24), ((mbedtls_mpi_uint) ( 0xEC ) << 0) | ((mbedtls_mpi_uint) ( 0xDE ) << 8) | ((mbedtls_mpi_uint) ( 0xB8 ) << 16) | ((mbedtls_mpi_uint) ( 0xFE ) << 24),
((mbedtls_mpi_uint) ( 0x49 ) << 0) | ((mbedtls_mpi_uint) ( 0x30 ) << 8) | ((mbedtls_mpi_uint) ( 0x24 ) << 16) | ((mbedtls_mpi_uint) ( 0x72 ) << 24), ((mbedtls_mpi_uint) ( 0xAB ) << 0) | ((mbedtls_mpi_uint) ( 0xE9 ) << 8) | ((mbedtls_mpi_uint) ( 0xA7 ) << 16) | ((mbedtls_mpi_uint) ( 0x0F ) << 24),
((mbedtls_mpi_uint) ( 0xE7 ) << 0) | ((mbedtls_mpi_uint) ( 0x80 ) << 8) | ((mbedtls_mpi_uint) ( 0x9C ) << 16) | ((mbedtls_mpi_uint) ( 0xE5 ) << 24), ((mbedtls_mpi_uint) ( 0x19 ) << 0) | ((mbedtls_mpi_uint) ( 0x05 ) << 8) | ((mbedtls_mpi_uint) ( 0x21 ) << 16) | ((mbedtls_mpi_uint) ( 0x64 ) << 24),
}

Definition at line 60 of file ecp_curves.c.

◆ secp192r1_gx

const mbedtls_mpi_uint secp192r1_gx[]
static
Initial value:
= {
((mbedtls_mpi_uint) ( 0x12 ) << 0) | ((mbedtls_mpi_uint) ( 0x10 ) << 8) | ((mbedtls_mpi_uint) ( 0xFF ) << 16) | ((mbedtls_mpi_uint) ( 0x82 ) << 24), ((mbedtls_mpi_uint) ( 0xFD ) << 0) | ((mbedtls_mpi_uint) ( 0x0A ) << 8) | ((mbedtls_mpi_uint) ( 0xFF ) << 16) | ((mbedtls_mpi_uint) ( 0xF4 ) << 24),
((mbedtls_mpi_uint) ( 0x00 ) << 0) | ((mbedtls_mpi_uint) ( 0x88 ) << 8) | ((mbedtls_mpi_uint) ( 0xA1 ) << 16) | ((mbedtls_mpi_uint) ( 0x43 ) << 24), ((mbedtls_mpi_uint) ( 0xEB ) << 0) | ((mbedtls_mpi_uint) ( 0x20 ) << 8) | ((mbedtls_mpi_uint) ( 0xBF ) << 16) | ((mbedtls_mpi_uint) ( 0x7C ) << 24),
((mbedtls_mpi_uint) ( 0xF6 ) << 0) | ((mbedtls_mpi_uint) ( 0x90 ) << 8) | ((mbedtls_mpi_uint) ( 0x30 ) << 16) | ((mbedtls_mpi_uint) ( 0xB0 ) << 24), ((mbedtls_mpi_uint) ( 0x0E ) << 0) | ((mbedtls_mpi_uint) ( 0xA8 ) << 8) | ((mbedtls_mpi_uint) ( 0x8D ) << 16) | ((mbedtls_mpi_uint) ( 0x18 ) << 24),
}

Definition at line 65 of file ecp_curves.c.

◆ secp192r1_gy

const mbedtls_mpi_uint secp192r1_gy[]
static
Initial value:
= {
((mbedtls_mpi_uint) ( 0x11 ) << 0) | ((mbedtls_mpi_uint) ( 0x48 ) << 8) | ((mbedtls_mpi_uint) ( 0x79 ) << 16) | ((mbedtls_mpi_uint) ( 0x1E ) << 24), ((mbedtls_mpi_uint) ( 0xA1 ) << 0) | ((mbedtls_mpi_uint) ( 0x77 ) << 8) | ((mbedtls_mpi_uint) ( 0xF9 ) << 16) | ((mbedtls_mpi_uint) ( 0x73 ) << 24),
((mbedtls_mpi_uint) ( 0xD5 ) << 0) | ((mbedtls_mpi_uint) ( 0xCD ) << 8) | ((mbedtls_mpi_uint) ( 0x24 ) << 16) | ((mbedtls_mpi_uint) ( 0x6B ) << 24), ((mbedtls_mpi_uint) ( 0xED ) << 0) | ((mbedtls_mpi_uint) ( 0x11 ) << 8) | ((mbedtls_mpi_uint) ( 0x10 ) << 16) | ((mbedtls_mpi_uint) ( 0x63 ) << 24),
((mbedtls_mpi_uint) ( 0x78 ) << 0) | ((mbedtls_mpi_uint) ( 0xDA ) << 8) | ((mbedtls_mpi_uint) ( 0xC8 ) << 16) | ((mbedtls_mpi_uint) ( 0xFF ) << 24), ((mbedtls_mpi_uint) ( 0x95 ) << 0) | ((mbedtls_mpi_uint) ( 0x2B ) << 8) | ((mbedtls_mpi_uint) ( 0x19 ) << 16) | ((mbedtls_mpi_uint) ( 0x07 ) << 24),
}

Definition at line 70 of file ecp_curves.c.

◆ secp192r1_n

const mbedtls_mpi_uint secp192r1_n[]
static
Initial value:
= {
((mbedtls_mpi_uint) ( 0x31 ) << 0) | ((mbedtls_mpi_uint) ( 0x28 ) << 8) | ((mbedtls_mpi_uint) ( 0xD2 ) << 16) | ((mbedtls_mpi_uint) ( 0xB4 ) << 24), ((mbedtls_mpi_uint) ( 0xB1 ) << 0) | ((mbedtls_mpi_uint) ( 0xC9 ) << 8) | ((mbedtls_mpi_uint) ( 0x6B ) << 16) | ((mbedtls_mpi_uint) ( 0x14 ) << 24),
((mbedtls_mpi_uint) ( 0x36 ) << 0) | ((mbedtls_mpi_uint) ( 0xF8 ) << 8) | ((mbedtls_mpi_uint) ( 0xDE ) << 16) | ((mbedtls_mpi_uint) ( 0x99 ) << 24), ((mbedtls_mpi_uint) ( 0xFF ) << 0) | ((mbedtls_mpi_uint) ( 0xFF ) << 8) | ((mbedtls_mpi_uint) ( 0xFF ) << 16) | ((mbedtls_mpi_uint) ( 0xFF ) << 24),
((mbedtls_mpi_uint) ( 0xFF ) << 0) | ((mbedtls_mpi_uint) ( 0xFF ) << 8) | ((mbedtls_mpi_uint) ( 0xFF ) << 16) | ((mbedtls_mpi_uint) ( 0xFF ) << 24), ((mbedtls_mpi_uint) ( 0xFF ) << 0) | ((mbedtls_mpi_uint) ( 0xFF ) << 8) | ((mbedtls_mpi_uint) ( 0xFF ) << 16) | ((mbedtls_mpi_uint) ( 0xFF ) << 24),
}

Definition at line 75 of file ecp_curves.c.

◆ secp192r1_p

const mbedtls_mpi_uint secp192r1_p[]
static
Initial value:
= {
((mbedtls_mpi_uint) ( 0xFF ) << 0) | ((mbedtls_mpi_uint) ( 0xFF ) << 8) | ((mbedtls_mpi_uint) ( 0xFF ) << 16) | ((mbedtls_mpi_uint) ( 0xFF ) << 24), ((mbedtls_mpi_uint) ( 0xFF ) << 0) | ((mbedtls_mpi_uint) ( 0xFF ) << 8) | ((mbedtls_mpi_uint) ( 0xFF ) << 16) | ((mbedtls_mpi_uint) ( 0xFF ) << 24),
((mbedtls_mpi_uint) ( 0xFE ) << 0) | ((mbedtls_mpi_uint) ( 0xFF ) << 8) | ((mbedtls_mpi_uint) ( 0xFF ) << 16) | ((mbedtls_mpi_uint) ( 0xFF ) << 24), ((mbedtls_mpi_uint) ( 0xFF ) << 0) | ((mbedtls_mpi_uint) ( 0xFF ) << 8) | ((mbedtls_mpi_uint) ( 0xFF ) << 16) | ((mbedtls_mpi_uint) ( 0xFF ) << 24),
((mbedtls_mpi_uint) ( 0xFF ) << 0) | ((mbedtls_mpi_uint) ( 0xFF ) << 8) | ((mbedtls_mpi_uint) ( 0xFF ) << 16) | ((mbedtls_mpi_uint) ( 0xFF ) << 24), ((mbedtls_mpi_uint) ( 0xFF ) << 0) | ((mbedtls_mpi_uint) ( 0xFF ) << 8) | ((mbedtls_mpi_uint) ( 0xFF ) << 16) | ((mbedtls_mpi_uint) ( 0xFF ) << 24),
}

Definition at line 55 of file ecp_curves.c.

◆ secp224k1_a

const mbedtls_mpi_uint secp224k1_a[]
static
Initial value:
= {
((mbedtls_mpi_uint) ( 0x00 ) << 0) | ((mbedtls_mpi_uint) ( 0x00 ) << 8) | ((mbedtls_mpi_uint) ( 0 ) << 16) | ((mbedtls_mpi_uint) ( 0 ) << 24),
}

Definition at line 297 of file ecp_curves.c.

◆ secp224k1_b

const mbedtls_mpi_uint secp224k1_b[]
static
Initial value:
= {
((mbedtls_mpi_uint) ( 0x05 ) << 0) | ((mbedtls_mpi_uint) ( 0x00 ) << 8) | ((mbedtls_mpi_uint) ( 0 ) << 16) | ((mbedtls_mpi_uint) ( 0 ) << 24),
}

Definition at line 300 of file ecp_curves.c.

◆ secp224k1_gx

const mbedtls_mpi_uint secp224k1_gx[]
static
Initial value:
= {
((mbedtls_mpi_uint) ( 0x5C ) << 0) | ((mbedtls_mpi_uint) ( 0xA4 ) << 8) | ((mbedtls_mpi_uint) ( 0xB7 ) << 16) | ((mbedtls_mpi_uint) ( 0xB6 ) << 24), ((mbedtls_mpi_uint) ( 0x0E ) << 0) | ((mbedtls_mpi_uint) ( 0x65 ) << 8) | ((mbedtls_mpi_uint) ( 0x7E ) << 16) | ((mbedtls_mpi_uint) ( 0x0F ) << 24),
((mbedtls_mpi_uint) ( 0xA9 ) << 0) | ((mbedtls_mpi_uint) ( 0x75 ) << 8) | ((mbedtls_mpi_uint) ( 0x70 ) << 16) | ((mbedtls_mpi_uint) ( 0xE4 ) << 24), ((mbedtls_mpi_uint) ( 0xE9 ) << 0) | ((mbedtls_mpi_uint) ( 0x67 ) << 8) | ((mbedtls_mpi_uint) ( 0xA4 ) << 16) | ((mbedtls_mpi_uint) ( 0x69 ) << 24),
((mbedtls_mpi_uint) ( 0xA1 ) << 0) | ((mbedtls_mpi_uint) ( 0x28 ) << 8) | ((mbedtls_mpi_uint) ( 0xFC ) << 16) | ((mbedtls_mpi_uint) ( 0x30 ) << 24), ((mbedtls_mpi_uint) ( 0xDF ) << 0) | ((mbedtls_mpi_uint) ( 0x99 ) << 8) | ((mbedtls_mpi_uint) ( 0xF0 ) << 16) | ((mbedtls_mpi_uint) ( 0x4D ) << 24),
((mbedtls_mpi_uint) ( 0x33 ) << 0) | ((mbedtls_mpi_uint) ( 0x5B ) << 8) | ((mbedtls_mpi_uint) ( 0x45 ) << 16) | ((mbedtls_mpi_uint) ( 0xA1 ) << 24),
}

Definition at line 303 of file ecp_curves.c.

◆ secp224k1_gy

const mbedtls_mpi_uint secp224k1_gy[]
static
Initial value:
= {
((mbedtls_mpi_uint) ( 0xA5 ) << 0) | ((mbedtls_mpi_uint) ( 0x61 ) << 8) | ((mbedtls_mpi_uint) ( 0x6D ) << 16) | ((mbedtls_mpi_uint) ( 0x55 ) << 24), ((mbedtls_mpi_uint) ( 0xDB ) << 0) | ((mbedtls_mpi_uint) ( 0x4B ) << 8) | ((mbedtls_mpi_uint) ( 0xCA ) << 16) | ((mbedtls_mpi_uint) ( 0xE2 ) << 24),
((mbedtls_mpi_uint) ( 0x59 ) << 0) | ((mbedtls_mpi_uint) ( 0xBD ) << 8) | ((mbedtls_mpi_uint) ( 0xB0 ) << 16) | ((mbedtls_mpi_uint) ( 0xC0 ) << 24), ((mbedtls_mpi_uint) ( 0xF7 ) << 0) | ((mbedtls_mpi_uint) ( 0x19 ) << 8) | ((mbedtls_mpi_uint) ( 0xE3 ) << 16) | ((mbedtls_mpi_uint) ( 0xF7 ) << 24),
((mbedtls_mpi_uint) ( 0xD6 ) << 0) | ((mbedtls_mpi_uint) ( 0xFB ) << 8) | ((mbedtls_mpi_uint) ( 0xCA ) << 16) | ((mbedtls_mpi_uint) ( 0x82 ) << 24), ((mbedtls_mpi_uint) ( 0x42 ) << 0) | ((mbedtls_mpi_uint) ( 0x34 ) << 8) | ((mbedtls_mpi_uint) ( 0xBA ) << 16) | ((mbedtls_mpi_uint) ( 0x7F ) << 24),
((mbedtls_mpi_uint) ( 0xED ) << 0) | ((mbedtls_mpi_uint) ( 0x9F ) << 8) | ((mbedtls_mpi_uint) ( 0x08 ) << 16) | ((mbedtls_mpi_uint) ( 0x7E ) << 24),
}

Definition at line 309 of file ecp_curves.c.

◆ secp224k1_n

const mbedtls_mpi_uint secp224k1_n[]
static
Initial value:
= {
((mbedtls_mpi_uint) ( 0xF7 ) << 0) | ((mbedtls_mpi_uint) ( 0xB1 ) << 8) | ((mbedtls_mpi_uint) ( 0x9F ) << 16) | ((mbedtls_mpi_uint) ( 0x76 ) << 24), ((mbedtls_mpi_uint) ( 0x71 ) << 0) | ((mbedtls_mpi_uint) ( 0xA9 ) << 8) | ((mbedtls_mpi_uint) ( 0xF0 ) << 16) | ((mbedtls_mpi_uint) ( 0xCA ) << 24),
((mbedtls_mpi_uint) ( 0x84 ) << 0) | ((mbedtls_mpi_uint) ( 0x61 ) << 8) | ((mbedtls_mpi_uint) ( 0xEC ) << 16) | ((mbedtls_mpi_uint) ( 0xD2 ) << 24), ((mbedtls_mpi_uint) ( 0xE8 ) << 0) | ((mbedtls_mpi_uint) ( 0xDC ) << 8) | ((mbedtls_mpi_uint) ( 0x01 ) << 16) | ((mbedtls_mpi_uint) ( 0x00 ) << 24),
((mbedtls_mpi_uint) ( 0x00 ) << 0) | ((mbedtls_mpi_uint) ( 0x00 ) << 8) | ((mbedtls_mpi_uint) ( 0x00 ) << 16) | ((mbedtls_mpi_uint) ( 0x00 ) << 24), ((mbedtls_mpi_uint) ( 0x00 ) << 0) | ((mbedtls_mpi_uint) ( 0x00 ) << 8) | ((mbedtls_mpi_uint) ( 0x00 ) << 16) | ((mbedtls_mpi_uint) ( 0x00 ) << 24),
((mbedtls_mpi_uint) ( 0x00 ) << 0) | ((mbedtls_mpi_uint) ( 0x00 ) << 8) | ((mbedtls_mpi_uint) ( 0x00 ) << 16) | ((mbedtls_mpi_uint) ( 0x00 ) << 24), ((mbedtls_mpi_uint) ( 0x01 ) << 0) | ((mbedtls_mpi_uint) ( 0x00 ) << 8) | ((mbedtls_mpi_uint) ( 0x00 ) << 16) | ((mbedtls_mpi_uint) ( 0x00 ) << 24),
}

Definition at line 315 of file ecp_curves.c.

◆ secp224k1_p

const mbedtls_mpi_uint secp224k1_p[]
static
Initial value:
= {
((mbedtls_mpi_uint) ( 0x6D ) << 0) | ((mbedtls_mpi_uint) ( 0xE5 ) << 8) | ((mbedtls_mpi_uint) ( 0xFF ) << 16) | ((mbedtls_mpi_uint) ( 0xFF ) << 24), ((mbedtls_mpi_uint) ( 0xFE ) << 0) | ((mbedtls_mpi_uint) ( 0xFF ) << 8) | ((mbedtls_mpi_uint) ( 0xFF ) << 16) | ((mbedtls_mpi_uint) ( 0xFF ) << 24),
((mbedtls_mpi_uint) ( 0xFF ) << 0) | ((mbedtls_mpi_uint) ( 0xFF ) << 8) | ((mbedtls_mpi_uint) ( 0xFF ) << 16) | ((mbedtls_mpi_uint) ( 0xFF ) << 24), ((mbedtls_mpi_uint) ( 0xFF ) << 0) | ((mbedtls_mpi_uint) ( 0xFF ) << 8) | ((mbedtls_mpi_uint) ( 0xFF ) << 16) | ((mbedtls_mpi_uint) ( 0xFF ) << 24),
((mbedtls_mpi_uint) ( 0xFF ) << 0) | ((mbedtls_mpi_uint) ( 0xFF ) << 8) | ((mbedtls_mpi_uint) ( 0xFF ) << 16) | ((mbedtls_mpi_uint) ( 0xFF ) << 24), ((mbedtls_mpi_uint) ( 0xFF ) << 0) | ((mbedtls_mpi_uint) ( 0xFF ) << 8) | ((mbedtls_mpi_uint) ( 0xFF ) << 16) | ((mbedtls_mpi_uint) ( 0xFF ) << 24),
((mbedtls_mpi_uint) ( 0xFF ) << 0) | ((mbedtls_mpi_uint) ( 0xFF ) << 8) | ((mbedtls_mpi_uint) ( 0xFF ) << 16) | ((mbedtls_mpi_uint) ( 0xFF ) << 24),
}

Definition at line 291 of file ecp_curves.c.

◆ secp224r1_b

const mbedtls_mpi_uint secp224r1_b[]
static
Initial value:
= {
((mbedtls_mpi_uint) ( 0xB4 ) << 0) | ((mbedtls_mpi_uint) ( 0xFF ) << 8) | ((mbedtls_mpi_uint) ( 0x55 ) << 16) | ((mbedtls_mpi_uint) ( 0x23 ) << 24), ((mbedtls_mpi_uint) ( 0x43 ) << 0) | ((mbedtls_mpi_uint) ( 0x39 ) << 8) | ((mbedtls_mpi_uint) ( 0x0B ) << 16) | ((mbedtls_mpi_uint) ( 0x27 ) << 24),
((mbedtls_mpi_uint) ( 0xBA ) << 0) | ((mbedtls_mpi_uint) ( 0xD8 ) << 8) | ((mbedtls_mpi_uint) ( 0xBF ) << 16) | ((mbedtls_mpi_uint) ( 0xD7 ) << 24), ((mbedtls_mpi_uint) ( 0xB7 ) << 0) | ((mbedtls_mpi_uint) ( 0xB0 ) << 8) | ((mbedtls_mpi_uint) ( 0x44 ) << 16) | ((mbedtls_mpi_uint) ( 0x50 ) << 24),
((mbedtls_mpi_uint) ( 0x56 ) << 0) | ((mbedtls_mpi_uint) ( 0x32 ) << 8) | ((mbedtls_mpi_uint) ( 0x41 ) << 16) | ((mbedtls_mpi_uint) ( 0xF5 ) << 24), ((mbedtls_mpi_uint) ( 0xAB ) << 0) | ((mbedtls_mpi_uint) ( 0xB3 ) << 8) | ((mbedtls_mpi_uint) ( 0x04 ) << 16) | ((mbedtls_mpi_uint) ( 0x0C ) << 24),
((mbedtls_mpi_uint) ( 0x85 ) << 0) | ((mbedtls_mpi_uint) ( 0x0A ) << 8) | ((mbedtls_mpi_uint) ( 0x05 ) << 16) | ((mbedtls_mpi_uint) ( 0xB4 ) << 24),
}

Definition at line 92 of file ecp_curves.c.

◆ secp224r1_gx

const mbedtls_mpi_uint secp224r1_gx[]
static
Initial value:
= {
((mbedtls_mpi_uint) ( 0x21 ) << 0) | ((mbedtls_mpi_uint) ( 0x1D ) << 8) | ((mbedtls_mpi_uint) ( 0x5C ) << 16) | ((mbedtls_mpi_uint) ( 0x11 ) << 24), ((mbedtls_mpi_uint) ( 0xD6 ) << 0) | ((mbedtls_mpi_uint) ( 0x80 ) << 8) | ((mbedtls_mpi_uint) ( 0x32 ) << 16) | ((mbedtls_mpi_uint) ( 0x34 ) << 24),
((mbedtls_mpi_uint) ( 0x22 ) << 0) | ((mbedtls_mpi_uint) ( 0x11 ) << 8) | ((mbedtls_mpi_uint) ( 0xC2 ) << 16) | ((mbedtls_mpi_uint) ( 0x56 ) << 24), ((mbedtls_mpi_uint) ( 0xD3 ) << 0) | ((mbedtls_mpi_uint) ( 0xC1 ) << 8) | ((mbedtls_mpi_uint) ( 0x03 ) << 16) | ((mbedtls_mpi_uint) ( 0x4A ) << 24),
((mbedtls_mpi_uint) ( 0xB9 ) << 0) | ((mbedtls_mpi_uint) ( 0x90 ) << 8) | ((mbedtls_mpi_uint) ( 0x13 ) << 16) | ((mbedtls_mpi_uint) ( 0x32 ) << 24), ((mbedtls_mpi_uint) ( 0x7F ) << 0) | ((mbedtls_mpi_uint) ( 0xBF ) << 8) | ((mbedtls_mpi_uint) ( 0xB4 ) << 16) | ((mbedtls_mpi_uint) ( 0x6B ) << 24),
((mbedtls_mpi_uint) ( 0xBD ) << 0) | ((mbedtls_mpi_uint) ( 0x0C ) << 8) | ((mbedtls_mpi_uint) ( 0x0E ) << 16) | ((mbedtls_mpi_uint) ( 0xB7 ) << 24),
}

Definition at line 98 of file ecp_curves.c.

◆ secp224r1_gy

const mbedtls_mpi_uint secp224r1_gy[]
static
Initial value:
= {
((mbedtls_mpi_uint) ( 0x34 ) << 0) | ((mbedtls_mpi_uint) ( 0x7E ) << 8) | ((mbedtls_mpi_uint) ( 0x00 ) << 16) | ((mbedtls_mpi_uint) ( 0x85 ) << 24), ((mbedtls_mpi_uint) ( 0x99 ) << 0) | ((mbedtls_mpi_uint) ( 0x81 ) << 8) | ((mbedtls_mpi_uint) ( 0xD5 ) << 16) | ((mbedtls_mpi_uint) ( 0x44 ) << 24),
((mbedtls_mpi_uint) ( 0x64 ) << 0) | ((mbedtls_mpi_uint) ( 0x47 ) << 8) | ((mbedtls_mpi_uint) ( 0x07 ) << 16) | ((mbedtls_mpi_uint) ( 0x5A ) << 24), ((mbedtls_mpi_uint) ( 0xA0 ) << 0) | ((mbedtls_mpi_uint) ( 0x75 ) << 8) | ((mbedtls_mpi_uint) ( 0x43 ) << 16) | ((mbedtls_mpi_uint) ( 0xCD ) << 24),
((mbedtls_mpi_uint) ( 0xE6 ) << 0) | ((mbedtls_mpi_uint) ( 0xDF ) << 8) | ((mbedtls_mpi_uint) ( 0x22 ) << 16) | ((mbedtls_mpi_uint) ( 0x4C ) << 24), ((mbedtls_mpi_uint) ( 0xFB ) << 0) | ((mbedtls_mpi_uint) ( 0x23 ) << 8) | ((mbedtls_mpi_uint) ( 0xF7 ) << 16) | ((mbedtls_mpi_uint) ( 0xB5 ) << 24),
((mbedtls_mpi_uint) ( 0x88 ) << 0) | ((mbedtls_mpi_uint) ( 0x63 ) << 8) | ((mbedtls_mpi_uint) ( 0x37 ) << 16) | ((mbedtls_mpi_uint) ( 0xBD ) << 24),
}

Definition at line 104 of file ecp_curves.c.

◆ secp224r1_n

const mbedtls_mpi_uint secp224r1_n[]
static
Initial value:
= {
((mbedtls_mpi_uint) ( 0x3D ) << 0) | ((mbedtls_mpi_uint) ( 0x2A ) << 8) | ((mbedtls_mpi_uint) ( 0x5C ) << 16) | ((mbedtls_mpi_uint) ( 0x5C ) << 24), ((mbedtls_mpi_uint) ( 0x45 ) << 0) | ((mbedtls_mpi_uint) ( 0x29 ) << 8) | ((mbedtls_mpi_uint) ( 0xDD ) << 16) | ((mbedtls_mpi_uint) ( 0x13 ) << 24),
((mbedtls_mpi_uint) ( 0x3E ) << 0) | ((mbedtls_mpi_uint) ( 0xF0 ) << 8) | ((mbedtls_mpi_uint) ( 0xB8 ) << 16) | ((mbedtls_mpi_uint) ( 0xE0 ) << 24), ((mbedtls_mpi_uint) ( 0xA2 ) << 0) | ((mbedtls_mpi_uint) ( 0x16 ) << 8) | ((mbedtls_mpi_uint) ( 0xFF ) << 16) | ((mbedtls_mpi_uint) ( 0xFF ) << 24),
((mbedtls_mpi_uint) ( 0xFF ) << 0) | ((mbedtls_mpi_uint) ( 0xFF ) << 8) | ((mbedtls_mpi_uint) ( 0xFF ) << 16) | ((mbedtls_mpi_uint) ( 0xFF ) << 24), ((mbedtls_mpi_uint) ( 0xFF ) << 0) | ((mbedtls_mpi_uint) ( 0xFF ) << 8) | ((mbedtls_mpi_uint) ( 0xFF ) << 16) | ((mbedtls_mpi_uint) ( 0xFF ) << 24),
((mbedtls_mpi_uint) ( 0xFF ) << 0) | ((mbedtls_mpi_uint) ( 0xFF ) << 8) | ((mbedtls_mpi_uint) ( 0xFF ) << 16) | ((mbedtls_mpi_uint) ( 0xFF ) << 24),
}

Definition at line 110 of file ecp_curves.c.

◆ secp224r1_p

const mbedtls_mpi_uint secp224r1_p[]
static
Initial value:
= {
((mbedtls_mpi_uint) ( 0x01 ) << 0) | ((mbedtls_mpi_uint) ( 0x00 ) << 8) | ((mbedtls_mpi_uint) ( 0x00 ) << 16) | ((mbedtls_mpi_uint) ( 0x00 ) << 24), ((mbedtls_mpi_uint) ( 0x00 ) << 0) | ((mbedtls_mpi_uint) ( 0x00 ) << 8) | ((mbedtls_mpi_uint) ( 0x00 ) << 16) | ((mbedtls_mpi_uint) ( 0x00 ) << 24),
((mbedtls_mpi_uint) ( 0x00 ) << 0) | ((mbedtls_mpi_uint) ( 0x00 ) << 8) | ((mbedtls_mpi_uint) ( 0x00 ) << 16) | ((mbedtls_mpi_uint) ( 0x00 ) << 24), ((mbedtls_mpi_uint) ( 0xFF ) << 0) | ((mbedtls_mpi_uint) ( 0xFF ) << 8) | ((mbedtls_mpi_uint) ( 0xFF ) << 16) | ((mbedtls_mpi_uint) ( 0xFF ) << 24),
((mbedtls_mpi_uint) ( 0xFF ) << 0) | ((mbedtls_mpi_uint) ( 0xFF ) << 8) | ((mbedtls_mpi_uint) ( 0xFF ) << 16) | ((mbedtls_mpi_uint) ( 0xFF ) << 24), ((mbedtls_mpi_uint) ( 0xFF ) << 0) | ((mbedtls_mpi_uint) ( 0xFF ) << 8) | ((mbedtls_mpi_uint) ( 0xFF ) << 16) | ((mbedtls_mpi_uint) ( 0xFF ) << 24),
((mbedtls_mpi_uint) ( 0xFF ) << 0) | ((mbedtls_mpi_uint) ( 0xFF ) << 8) | ((mbedtls_mpi_uint) ( 0xFF ) << 16) | ((mbedtls_mpi_uint) ( 0xFF ) << 24), ((mbedtls_mpi_uint) ( 0x00 ) << 0) | ((mbedtls_mpi_uint) ( 0x00 ) << 8) | ((mbedtls_mpi_uint) ( 0x00 ) << 16) | ((mbedtls_mpi_uint) ( 0x00 ) << 24),
}

Definition at line 86 of file ecp_curves.c.

◆ secp256k1_a

const mbedtls_mpi_uint secp256k1_a[]
static
Initial value:
= {
((mbedtls_mpi_uint) ( 0x00 ) << 0) | ((mbedtls_mpi_uint) ( 0x00 ) << 8) | ((mbedtls_mpi_uint) ( 0 ) << 16) | ((mbedtls_mpi_uint) ( 0 ) << 24),
}

Definition at line 330 of file ecp_curves.c.

◆ secp256k1_b

const mbedtls_mpi_uint secp256k1_b[]
static
Initial value:
= {
((mbedtls_mpi_uint) ( 0x07 ) << 0) | ((mbedtls_mpi_uint) ( 0x00 ) << 8) | ((mbedtls_mpi_uint) ( 0 ) << 16) | ((mbedtls_mpi_uint) ( 0 ) << 24),
}

Definition at line 333 of file ecp_curves.c.

◆ secp256k1_gx

const mbedtls_mpi_uint secp256k1_gx[]
static
Initial value:
= {
((mbedtls_mpi_uint) ( 0x98 ) << 0) | ((mbedtls_mpi_uint) ( 0x17 ) << 8) | ((mbedtls_mpi_uint) ( 0xF8 ) << 16) | ((mbedtls_mpi_uint) ( 0x16 ) << 24), ((mbedtls_mpi_uint) ( 0x5B ) << 0) | ((mbedtls_mpi_uint) ( 0x81 ) << 8) | ((mbedtls_mpi_uint) ( 0xF2 ) << 16) | ((mbedtls_mpi_uint) ( 0x59 ) << 24),
((mbedtls_mpi_uint) ( 0xD9 ) << 0) | ((mbedtls_mpi_uint) ( 0x28 ) << 8) | ((mbedtls_mpi_uint) ( 0xCE ) << 16) | ((mbedtls_mpi_uint) ( 0x2D ) << 24), ((mbedtls_mpi_uint) ( 0xDB ) << 0) | ((mbedtls_mpi_uint) ( 0xFC ) << 8) | ((mbedtls_mpi_uint) ( 0x9B ) << 16) | ((mbedtls_mpi_uint) ( 0x02 ) << 24),
((mbedtls_mpi_uint) ( 0x07 ) << 0) | ((mbedtls_mpi_uint) ( 0x0B ) << 8) | ((mbedtls_mpi_uint) ( 0x87 ) << 16) | ((mbedtls_mpi_uint) ( 0xCE ) << 24), ((mbedtls_mpi_uint) ( 0x95 ) << 0) | ((mbedtls_mpi_uint) ( 0x62 ) << 8) | ((mbedtls_mpi_uint) ( 0xA0 ) << 16) | ((mbedtls_mpi_uint) ( 0x55 ) << 24),
((mbedtls_mpi_uint) ( 0xAC ) << 0) | ((mbedtls_mpi_uint) ( 0xBB ) << 8) | ((mbedtls_mpi_uint) ( 0xDC ) << 16) | ((mbedtls_mpi_uint) ( 0xF9 ) << 24), ((mbedtls_mpi_uint) ( 0x7E ) << 0) | ((mbedtls_mpi_uint) ( 0x66 ) << 8) | ((mbedtls_mpi_uint) ( 0xBE ) << 16) | ((mbedtls_mpi_uint) ( 0x79 ) << 24),
}

Definition at line 336 of file ecp_curves.c.

◆ secp256k1_gy

const mbedtls_mpi_uint secp256k1_gy[]
static
Initial value:
= {
((mbedtls_mpi_uint) ( 0xB8 ) << 0) | ((mbedtls_mpi_uint) ( 0xD4 ) << 8) | ((mbedtls_mpi_uint) ( 0x10 ) << 16) | ((mbedtls_mpi_uint) ( 0xFB ) << 24), ((mbedtls_mpi_uint) ( 0x8F ) << 0) | ((mbedtls_mpi_uint) ( 0xD0 ) << 8) | ((mbedtls_mpi_uint) ( 0x47 ) << 16) | ((mbedtls_mpi_uint) ( 0x9C ) << 24),
((mbedtls_mpi_uint) ( 0x19 ) << 0) | ((mbedtls_mpi_uint) ( 0x54 ) << 8) | ((mbedtls_mpi_uint) ( 0x85 ) << 16) | ((mbedtls_mpi_uint) ( 0xA6 ) << 24), ((mbedtls_mpi_uint) ( 0x48 ) << 0) | ((mbedtls_mpi_uint) ( 0xB4 ) << 8) | ((mbedtls_mpi_uint) ( 0x17 ) << 16) | ((mbedtls_mpi_uint) ( 0xFD ) << 24),
((mbedtls_mpi_uint) ( 0xA8 ) << 0) | ((mbedtls_mpi_uint) ( 0x08 ) << 8) | ((mbedtls_mpi_uint) ( 0x11 ) << 16) | ((mbedtls_mpi_uint) ( 0x0E ) << 24), ((mbedtls_mpi_uint) ( 0xFC ) << 0) | ((mbedtls_mpi_uint) ( 0xFB ) << 8) | ((mbedtls_mpi_uint) ( 0xA4 ) << 16) | ((mbedtls_mpi_uint) ( 0x5D ) << 24),
((mbedtls_mpi_uint) ( 0x65 ) << 0) | ((mbedtls_mpi_uint) ( 0xC4 ) << 8) | ((mbedtls_mpi_uint) ( 0xA3 ) << 16) | ((mbedtls_mpi_uint) ( 0x26 ) << 24), ((mbedtls_mpi_uint) ( 0x77 ) << 0) | ((mbedtls_mpi_uint) ( 0xDA ) << 8) | ((mbedtls_mpi_uint) ( 0x3A ) << 16) | ((mbedtls_mpi_uint) ( 0x48 ) << 24),
}

Definition at line 342 of file ecp_curves.c.

◆ secp256k1_n

const mbedtls_mpi_uint secp256k1_n[]
static
Initial value:
= {
((mbedtls_mpi_uint) ( 0x41 ) << 0) | ((mbedtls_mpi_uint) ( 0x41 ) << 8) | ((mbedtls_mpi_uint) ( 0x36 ) << 16) | ((mbedtls_mpi_uint) ( 0xD0 ) << 24), ((mbedtls_mpi_uint) ( 0x8C ) << 0) | ((mbedtls_mpi_uint) ( 0x5E ) << 8) | ((mbedtls_mpi_uint) ( 0xD2 ) << 16) | ((mbedtls_mpi_uint) ( 0xBF ) << 24),
((mbedtls_mpi_uint) ( 0x3B ) << 0) | ((mbedtls_mpi_uint) ( 0xA0 ) << 8) | ((mbedtls_mpi_uint) ( 0x48 ) << 16) | ((mbedtls_mpi_uint) ( 0xAF ) << 24), ((mbedtls_mpi_uint) ( 0xE6 ) << 0) | ((mbedtls_mpi_uint) ( 0xDC ) << 8) | ((mbedtls_mpi_uint) ( 0xAE ) << 16) | ((mbedtls_mpi_uint) ( 0xBA ) << 24),
((mbedtls_mpi_uint) ( 0xFE ) << 0) | ((mbedtls_mpi_uint) ( 0xFF ) << 8) | ((mbedtls_mpi_uint) ( 0xFF ) << 16) | ((mbedtls_mpi_uint) ( 0xFF ) << 24), ((mbedtls_mpi_uint) ( 0xFF ) << 0) | ((mbedtls_mpi_uint) ( 0xFF ) << 8) | ((mbedtls_mpi_uint) ( 0xFF ) << 16) | ((mbedtls_mpi_uint) ( 0xFF ) << 24),
((mbedtls_mpi_uint) ( 0xFF ) << 0) | ((mbedtls_mpi_uint) ( 0xFF ) << 8) | ((mbedtls_mpi_uint) ( 0xFF ) << 16) | ((mbedtls_mpi_uint) ( 0xFF ) << 24), ((mbedtls_mpi_uint) ( 0xFF ) << 0) | ((mbedtls_mpi_uint) ( 0xFF ) << 8) | ((mbedtls_mpi_uint) ( 0xFF ) << 16) | ((mbedtls_mpi_uint) ( 0xFF ) << 24),
}

Definition at line 348 of file ecp_curves.c.

◆ secp256k1_p

const mbedtls_mpi_uint secp256k1_p[]
static
Initial value:
= {
((mbedtls_mpi_uint) ( 0x2F ) << 0) | ((mbedtls_mpi_uint) ( 0xFC ) << 8) | ((mbedtls_mpi_uint) ( 0xFF ) << 16) | ((mbedtls_mpi_uint) ( 0xFF ) << 24), ((mbedtls_mpi_uint) ( 0xFE ) << 0) | ((mbedtls_mpi_uint) ( 0xFF ) << 8) | ((mbedtls_mpi_uint) ( 0xFF ) << 16) | ((mbedtls_mpi_uint) ( 0xFF ) << 24),
((mbedtls_mpi_uint) ( 0xFF ) << 0) | ((mbedtls_mpi_uint) ( 0xFF ) << 8) | ((mbedtls_mpi_uint) ( 0xFF ) << 16) | ((mbedtls_mpi_uint) ( 0xFF ) << 24), ((mbedtls_mpi_uint) ( 0xFF ) << 0) | ((mbedtls_mpi_uint) ( 0xFF ) << 8) | ((mbedtls_mpi_uint) ( 0xFF ) << 16) | ((mbedtls_mpi_uint) ( 0xFF ) << 24),
((mbedtls_mpi_uint) ( 0xFF ) << 0) | ((mbedtls_mpi_uint) ( 0xFF ) << 8) | ((mbedtls_mpi_uint) ( 0xFF ) << 16) | ((mbedtls_mpi_uint) ( 0xFF ) << 24), ((mbedtls_mpi_uint) ( 0xFF ) << 0) | ((mbedtls_mpi_uint) ( 0xFF ) << 8) | ((mbedtls_mpi_uint) ( 0xFF ) << 16) | ((mbedtls_mpi_uint) ( 0xFF ) << 24),
((mbedtls_mpi_uint) ( 0xFF ) << 0) | ((mbedtls_mpi_uint) ( 0xFF ) << 8) | ((mbedtls_mpi_uint) ( 0xFF ) << 16) | ((mbedtls_mpi_uint) ( 0xFF ) << 24), ((mbedtls_mpi_uint) ( 0xFF ) << 0) | ((mbedtls_mpi_uint) ( 0xFF ) << 8) | ((mbedtls_mpi_uint) ( 0xFF ) << 16) | ((mbedtls_mpi_uint) ( 0xFF ) << 24),
}

Definition at line 324 of file ecp_curves.c.

◆ secp256r1_b

const mbedtls_mpi_uint secp256r1_b[]
static
Initial value:
= {
((mbedtls_mpi_uint) ( 0x4B ) << 0) | ((mbedtls_mpi_uint) ( 0x60 ) << 8) | ((mbedtls_mpi_uint) ( 0xD2 ) << 16) | ((mbedtls_mpi_uint) ( 0x27 ) << 24), ((mbedtls_mpi_uint) ( 0x3E ) << 0) | ((mbedtls_mpi_uint) ( 0x3C ) << 8) | ((mbedtls_mpi_uint) ( 0xCE ) << 16) | ((mbedtls_mpi_uint) ( 0x3B ) << 24),
((mbedtls_mpi_uint) ( 0xF6 ) << 0) | ((mbedtls_mpi_uint) ( 0xB0 ) << 8) | ((mbedtls_mpi_uint) ( 0x53 ) << 16) | ((mbedtls_mpi_uint) ( 0xCC ) << 24), ((mbedtls_mpi_uint) ( 0xB0 ) << 0) | ((mbedtls_mpi_uint) ( 0x06 ) << 8) | ((mbedtls_mpi_uint) ( 0x1D ) << 16) | ((mbedtls_mpi_uint) ( 0x65 ) << 24),
((mbedtls_mpi_uint) ( 0xBC ) << 0) | ((mbedtls_mpi_uint) ( 0x86 ) << 8) | ((mbedtls_mpi_uint) ( 0x98 ) << 16) | ((mbedtls_mpi_uint) ( 0x76 ) << 24), ((mbedtls_mpi_uint) ( 0x55 ) << 0) | ((mbedtls_mpi_uint) ( 0xBD ) << 8) | ((mbedtls_mpi_uint) ( 0xEB ) << 16) | ((mbedtls_mpi_uint) ( 0xB3 ) << 24),
((mbedtls_mpi_uint) ( 0xE7 ) << 0) | ((mbedtls_mpi_uint) ( 0x93 ) << 8) | ((mbedtls_mpi_uint) ( 0x3A ) << 16) | ((mbedtls_mpi_uint) ( 0xAA ) << 24), ((mbedtls_mpi_uint) ( 0xD8 ) << 0) | ((mbedtls_mpi_uint) ( 0x35 ) << 8) | ((mbedtls_mpi_uint) ( 0xC6 ) << 16) | ((mbedtls_mpi_uint) ( 0x5A ) << 24),
}

Definition at line 128 of file ecp_curves.c.

◆ secp256r1_gx

const mbedtls_mpi_uint secp256r1_gx[]
static
Initial value:
= {
((mbedtls_mpi_uint) ( 0x96 ) << 0) | ((mbedtls_mpi_uint) ( 0xC2 ) << 8) | ((mbedtls_mpi_uint) ( 0x98 ) << 16) | ((mbedtls_mpi_uint) ( 0xD8 ) << 24), ((mbedtls_mpi_uint) ( 0x45 ) << 0) | ((mbedtls_mpi_uint) ( 0x39 ) << 8) | ((mbedtls_mpi_uint) ( 0xA1 ) << 16) | ((mbedtls_mpi_uint) ( 0xF4 ) << 24),
((mbedtls_mpi_uint) ( 0xA0 ) << 0) | ((mbedtls_mpi_uint) ( 0x33 ) << 8) | ((mbedtls_mpi_uint) ( 0xEB ) << 16) | ((mbedtls_mpi_uint) ( 0x2D ) << 24), ((mbedtls_mpi_uint) ( 0x81 ) << 0) | ((mbedtls_mpi_uint) ( 0x7D ) << 8) | ((mbedtls_mpi_uint) ( 0x03 ) << 16) | ((mbedtls_mpi_uint) ( 0x77 ) << 24),
((mbedtls_mpi_uint) ( 0xF2 ) << 0) | ((mbedtls_mpi_uint) ( 0x40 ) << 8) | ((mbedtls_mpi_uint) ( 0xA4 ) << 16) | ((mbedtls_mpi_uint) ( 0x63 ) << 24), ((mbedtls_mpi_uint) ( 0xE5 ) << 0) | ((mbedtls_mpi_uint) ( 0xE6 ) << 8) | ((mbedtls_mpi_uint) ( 0xBC ) << 16) | ((mbedtls_mpi_uint) ( 0xF8 ) << 24),
((mbedtls_mpi_uint) ( 0x47 ) << 0) | ((mbedtls_mpi_uint) ( 0x42 ) << 8) | ((mbedtls_mpi_uint) ( 0x2C ) << 16) | ((mbedtls_mpi_uint) ( 0xE1 ) << 24), ((mbedtls_mpi_uint) ( 0xF2 ) << 0) | ((mbedtls_mpi_uint) ( 0xD1 ) << 8) | ((mbedtls_mpi_uint) ( 0x17 ) << 16) | ((mbedtls_mpi_uint) ( 0x6B ) << 24),
}

Definition at line 134 of file ecp_curves.c.

◆ secp256r1_gy

const mbedtls_mpi_uint secp256r1_gy[]
static
Initial value:
= {
((mbedtls_mpi_uint) ( 0xF5 ) << 0) | ((mbedtls_mpi_uint) ( 0x51 ) << 8) | ((mbedtls_mpi_uint) ( 0xBF ) << 16) | ((mbedtls_mpi_uint) ( 0x37 ) << 24), ((mbedtls_mpi_uint) ( 0x68 ) << 0) | ((mbedtls_mpi_uint) ( 0x40 ) << 8) | ((mbedtls_mpi_uint) ( 0xB6 ) << 16) | ((mbedtls_mpi_uint) ( 0xCB ) << 24),
((mbedtls_mpi_uint) ( 0xCE ) << 0) | ((mbedtls_mpi_uint) ( 0x5E ) << 8) | ((mbedtls_mpi_uint) ( 0x31 ) << 16) | ((mbedtls_mpi_uint) ( 0x6B ) << 24), ((mbedtls_mpi_uint) ( 0x57 ) << 0) | ((mbedtls_mpi_uint) ( 0x33 ) << 8) | ((mbedtls_mpi_uint) ( 0xCE ) << 16) | ((mbedtls_mpi_uint) ( 0x2B ) << 24),
((mbedtls_mpi_uint) ( 0x16 ) << 0) | ((mbedtls_mpi_uint) ( 0x9E ) << 8) | ((mbedtls_mpi_uint) ( 0x0F ) << 16) | ((mbedtls_mpi_uint) ( 0x7C ) << 24), ((mbedtls_mpi_uint) ( 0x4A ) << 0) | ((mbedtls_mpi_uint) ( 0xEB ) << 8) | ((mbedtls_mpi_uint) ( 0xE7 ) << 16) | ((mbedtls_mpi_uint) ( 0x8E ) << 24),
((mbedtls_mpi_uint) ( 0x9B ) << 0) | ((mbedtls_mpi_uint) ( 0x7F ) << 8) | ((mbedtls_mpi_uint) ( 0x1A ) << 16) | ((mbedtls_mpi_uint) ( 0xFE ) << 24), ((mbedtls_mpi_uint) ( 0xE2 ) << 0) | ((mbedtls_mpi_uint) ( 0x42 ) << 8) | ((mbedtls_mpi_uint) ( 0xE3 ) << 16) | ((mbedtls_mpi_uint) ( 0x4F ) << 24),
}

Definition at line 140 of file ecp_curves.c.

◆ secp256r1_n

const mbedtls_mpi_uint secp256r1_n[]
static
Initial value:
= {
((mbedtls_mpi_uint) ( 0x51 ) << 0) | ((mbedtls_mpi_uint) ( 0x25 ) << 8) | ((mbedtls_mpi_uint) ( 0x63 ) << 16) | ((mbedtls_mpi_uint) ( 0xFC ) << 24), ((mbedtls_mpi_uint) ( 0xC2 ) << 0) | ((mbedtls_mpi_uint) ( 0xCA ) << 8) | ((mbedtls_mpi_uint) ( 0xB9 ) << 16) | ((mbedtls_mpi_uint) ( 0xF3 ) << 24),
((mbedtls_mpi_uint) ( 0x84 ) << 0) | ((mbedtls_mpi_uint) ( 0x9E ) << 8) | ((mbedtls_mpi_uint) ( 0x17 ) << 16) | ((mbedtls_mpi_uint) ( 0xA7 ) << 24), ((mbedtls_mpi_uint) ( 0xAD ) << 0) | ((mbedtls_mpi_uint) ( 0xFA ) << 8) | ((mbedtls_mpi_uint) ( 0xE6 ) << 16) | ((mbedtls_mpi_uint) ( 0xBC ) << 24),
((mbedtls_mpi_uint) ( 0xFF ) << 0) | ((mbedtls_mpi_uint) ( 0xFF ) << 8) | ((mbedtls_mpi_uint) ( 0xFF ) << 16) | ((mbedtls_mpi_uint) ( 0xFF ) << 24), ((mbedtls_mpi_uint) ( 0xFF ) << 0) | ((mbedtls_mpi_uint) ( 0xFF ) << 8) | ((mbedtls_mpi_uint) ( 0xFF ) << 16) | ((mbedtls_mpi_uint) ( 0xFF ) << 24),
((mbedtls_mpi_uint) ( 0x00 ) << 0) | ((mbedtls_mpi_uint) ( 0x00 ) << 8) | ((mbedtls_mpi_uint) ( 0x00 ) << 16) | ((mbedtls_mpi_uint) ( 0x00 ) << 24), ((mbedtls_mpi_uint) ( 0xFF ) << 0) | ((mbedtls_mpi_uint) ( 0xFF ) << 8) | ((mbedtls_mpi_uint) ( 0xFF ) << 16) | ((mbedtls_mpi_uint) ( 0xFF ) << 24),
}

Definition at line 146 of file ecp_curves.c.

◆ secp256r1_p

const mbedtls_mpi_uint secp256r1_p[]
static
Initial value:
= {
((mbedtls_mpi_uint) ( 0xFF ) << 0) | ((mbedtls_mpi_uint) ( 0xFF ) << 8) | ((mbedtls_mpi_uint) ( 0xFF ) << 16) | ((mbedtls_mpi_uint) ( 0xFF ) << 24), ((mbedtls_mpi_uint) ( 0xFF ) << 0) | ((mbedtls_mpi_uint) ( 0xFF ) << 8) | ((mbedtls_mpi_uint) ( 0xFF ) << 16) | ((mbedtls_mpi_uint) ( 0xFF ) << 24),
((mbedtls_mpi_uint) ( 0xFF ) << 0) | ((mbedtls_mpi_uint) ( 0xFF ) << 8) | ((mbedtls_mpi_uint) ( 0xFF ) << 16) | ((mbedtls_mpi_uint) ( 0xFF ) << 24), ((mbedtls_mpi_uint) ( 0x00 ) << 0) | ((mbedtls_mpi_uint) ( 0x00 ) << 8) | ((mbedtls_mpi_uint) ( 0x00 ) << 16) | ((mbedtls_mpi_uint) ( 0x00 ) << 24),
((mbedtls_mpi_uint) ( 0x00 ) << 0) | ((mbedtls_mpi_uint) ( 0x00 ) << 8) | ((mbedtls_mpi_uint) ( 0x00 ) << 16) | ((mbedtls_mpi_uint) ( 0x00 ) << 24), ((mbedtls_mpi_uint) ( 0x00 ) << 0) | ((mbedtls_mpi_uint) ( 0x00 ) << 8) | ((mbedtls_mpi_uint) ( 0x00 ) << 16) | ((mbedtls_mpi_uint) ( 0x00 ) << 24),
((mbedtls_mpi_uint) ( 0x01 ) << 0) | ((mbedtls_mpi_uint) ( 0x00 ) << 8) | ((mbedtls_mpi_uint) ( 0x00 ) << 16) | ((mbedtls_mpi_uint) ( 0x00 ) << 24), ((mbedtls_mpi_uint) ( 0xFF ) << 0) | ((mbedtls_mpi_uint) ( 0xFF ) << 8) | ((mbedtls_mpi_uint) ( 0xFF ) << 16) | ((mbedtls_mpi_uint) ( 0xFF ) << 24),
}

Definition at line 122 of file ecp_curves.c.

◆ secp384r1_b

const mbedtls_mpi_uint secp384r1_b[]
static
Initial value:
= {
((mbedtls_mpi_uint) ( 0xEF ) << 0) | ((mbedtls_mpi_uint) ( 0x2A ) << 8) | ((mbedtls_mpi_uint) ( 0xEC ) << 16) | ((mbedtls_mpi_uint) ( 0xD3 ) << 24), ((mbedtls_mpi_uint) ( 0xED ) << 0) | ((mbedtls_mpi_uint) ( 0xC8 ) << 8) | ((mbedtls_mpi_uint) ( 0x85 ) << 16) | ((mbedtls_mpi_uint) ( 0x2A ) << 24),
((mbedtls_mpi_uint) ( 0x9D ) << 0) | ((mbedtls_mpi_uint) ( 0xD1 ) << 8) | ((mbedtls_mpi_uint) ( 0x2E ) << 16) | ((mbedtls_mpi_uint) ( 0x8A ) << 24), ((mbedtls_mpi_uint) ( 0x8D ) << 0) | ((mbedtls_mpi_uint) ( 0x39 ) << 8) | ((mbedtls_mpi_uint) ( 0x56 ) << 16) | ((mbedtls_mpi_uint) ( 0xC6 ) << 24),
((mbedtls_mpi_uint) ( 0x5A ) << 0) | ((mbedtls_mpi_uint) ( 0x87 ) << 8) | ((mbedtls_mpi_uint) ( 0x13 ) << 16) | ((mbedtls_mpi_uint) ( 0x50 ) << 24), ((mbedtls_mpi_uint) ( 0x8F ) << 0) | ((mbedtls_mpi_uint) ( 0x08 ) << 8) | ((mbedtls_mpi_uint) ( 0x14 ) << 16) | ((mbedtls_mpi_uint) ( 0x03 ) << 24),
((mbedtls_mpi_uint) ( 0x12 ) << 0) | ((mbedtls_mpi_uint) ( 0x41 ) << 8) | ((mbedtls_mpi_uint) ( 0x81 ) << 16) | ((mbedtls_mpi_uint) ( 0xFE ) << 24), ((mbedtls_mpi_uint) ( 0x6E ) << 0) | ((mbedtls_mpi_uint) ( 0x9C ) << 8) | ((mbedtls_mpi_uint) ( 0x1D ) << 16) | ((mbedtls_mpi_uint) ( 0x18 ) << 24),
((mbedtls_mpi_uint) ( 0x19 ) << 0) | ((mbedtls_mpi_uint) ( 0x2D ) << 8) | ((mbedtls_mpi_uint) ( 0xF8 ) << 16) | ((mbedtls_mpi_uint) ( 0xE3 ) << 24), ((mbedtls_mpi_uint) ( 0x6B ) << 0) | ((mbedtls_mpi_uint) ( 0x05 ) << 8) | ((mbedtls_mpi_uint) ( 0x8E ) << 16) | ((mbedtls_mpi_uint) ( 0x98 ) << 24),
((mbedtls_mpi_uint) ( 0xE4 ) << 0) | ((mbedtls_mpi_uint) ( 0xE7 ) << 8) | ((mbedtls_mpi_uint) ( 0x3E ) << 16) | ((mbedtls_mpi_uint) ( 0xE2 ) << 24), ((mbedtls_mpi_uint) ( 0xA7 ) << 0) | ((mbedtls_mpi_uint) ( 0x2F ) << 8) | ((mbedtls_mpi_uint) ( 0x31 ) << 16) | ((mbedtls_mpi_uint) ( 0xB3 ) << 24),
}

Definition at line 166 of file ecp_curves.c.

◆ secp384r1_gx

const mbedtls_mpi_uint secp384r1_gx[]
static
Initial value:
= {
((mbedtls_mpi_uint) ( 0xB7 ) << 0) | ((mbedtls_mpi_uint) ( 0x0A ) << 8) | ((mbedtls_mpi_uint) ( 0x76 ) << 16) | ((mbedtls_mpi_uint) ( 0x72 ) << 24), ((mbedtls_mpi_uint) ( 0x38 ) << 0) | ((mbedtls_mpi_uint) ( 0x5E ) << 8) | ((mbedtls_mpi_uint) ( 0x54 ) << 16) | ((mbedtls_mpi_uint) ( 0x3A ) << 24),
((mbedtls_mpi_uint) ( 0x6C ) << 0) | ((mbedtls_mpi_uint) ( 0x29 ) << 8) | ((mbedtls_mpi_uint) ( 0x55 ) << 16) | ((mbedtls_mpi_uint) ( 0xBF ) << 24), ((mbedtls_mpi_uint) ( 0x5D ) << 0) | ((mbedtls_mpi_uint) ( 0xF2 ) << 8) | ((mbedtls_mpi_uint) ( 0x02 ) << 16) | ((mbedtls_mpi_uint) ( 0x55 ) << 24),
((mbedtls_mpi_uint) ( 0x38 ) << 0) | ((mbedtls_mpi_uint) ( 0x2A ) << 8) | ((mbedtls_mpi_uint) ( 0x54 ) << 16) | ((mbedtls_mpi_uint) ( 0x82 ) << 24), ((mbedtls_mpi_uint) ( 0xE0 ) << 0) | ((mbedtls_mpi_uint) ( 0x41 ) << 8) | ((mbedtls_mpi_uint) ( 0xF7 ) << 16) | ((mbedtls_mpi_uint) ( 0x59 ) << 24),
((mbedtls_mpi_uint) ( 0x98 ) << 0) | ((mbedtls_mpi_uint) ( 0x9B ) << 8) | ((mbedtls_mpi_uint) ( 0xA7 ) << 16) | ((mbedtls_mpi_uint) ( 0x8B ) << 24), ((mbedtls_mpi_uint) ( 0x62 ) << 0) | ((mbedtls_mpi_uint) ( 0x3B ) << 8) | ((mbedtls_mpi_uint) ( 0x1D ) << 16) | ((mbedtls_mpi_uint) ( 0x6E ) << 24),
((mbedtls_mpi_uint) ( 0x74 ) << 0) | ((mbedtls_mpi_uint) ( 0xAD ) << 8) | ((mbedtls_mpi_uint) ( 0x20 ) << 16) | ((mbedtls_mpi_uint) ( 0xF3 ) << 24), ((mbedtls_mpi_uint) ( 0x1E ) << 0) | ((mbedtls_mpi_uint) ( 0xC7 ) << 8) | ((mbedtls_mpi_uint) ( 0xB1 ) << 16) | ((mbedtls_mpi_uint) ( 0x8E ) << 24),
((mbedtls_mpi_uint) ( 0x37 ) << 0) | ((mbedtls_mpi_uint) ( 0x05 ) << 8) | ((mbedtls_mpi_uint) ( 0x8B ) << 16) | ((mbedtls_mpi_uint) ( 0xBE ) << 24), ((mbedtls_mpi_uint) ( 0x22 ) << 0) | ((mbedtls_mpi_uint) ( 0xCA ) << 8) | ((mbedtls_mpi_uint) ( 0x87 ) << 16) | ((mbedtls_mpi_uint) ( 0xAA ) << 24),
}

Definition at line 174 of file ecp_curves.c.

◆ secp384r1_gy

const mbedtls_mpi_uint secp384r1_gy[]
static
Initial value:
= {
((mbedtls_mpi_uint) ( 0x5F ) << 0) | ((mbedtls_mpi_uint) ( 0x0E ) << 8) | ((mbedtls_mpi_uint) ( 0xEA ) << 16) | ((mbedtls_mpi_uint) ( 0x90 ) << 24), ((mbedtls_mpi_uint) ( 0x7C ) << 0) | ((mbedtls_mpi_uint) ( 0x1D ) << 8) | ((mbedtls_mpi_uint) ( 0x43 ) << 16) | ((mbedtls_mpi_uint) ( 0x7A ) << 24),
((mbedtls_mpi_uint) ( 0x9D ) << 0) | ((mbedtls_mpi_uint) ( 0x81 ) << 8) | ((mbedtls_mpi_uint) ( 0x7E ) << 16) | ((mbedtls_mpi_uint) ( 0x1D ) << 24), ((mbedtls_mpi_uint) ( 0xCE ) << 0) | ((mbedtls_mpi_uint) ( 0xB1 ) << 8) | ((mbedtls_mpi_uint) ( 0x60 ) << 16) | ((mbedtls_mpi_uint) ( 0x0A ) << 24),
((mbedtls_mpi_uint) ( 0xC0 ) << 0) | ((mbedtls_mpi_uint) ( 0xB8 ) << 8) | ((mbedtls_mpi_uint) ( 0xF0 ) << 16) | ((mbedtls_mpi_uint) ( 0xB5 ) << 24), ((mbedtls_mpi_uint) ( 0x13 ) << 0) | ((mbedtls_mpi_uint) ( 0x31 ) << 8) | ((mbedtls_mpi_uint) ( 0xDA ) << 16) | ((mbedtls_mpi_uint) ( 0xE9 ) << 24),
((mbedtls_mpi_uint) ( 0x7C ) << 0) | ((mbedtls_mpi_uint) ( 0x14 ) << 8) | ((mbedtls_mpi_uint) ( 0x9A ) << 16) | ((mbedtls_mpi_uint) ( 0x28 ) << 24), ((mbedtls_mpi_uint) ( 0xBD ) << 0) | ((mbedtls_mpi_uint) ( 0x1D ) << 8) | ((mbedtls_mpi_uint) ( 0xF4 ) << 16) | ((mbedtls_mpi_uint) ( 0xF8 ) << 24),
((mbedtls_mpi_uint) ( 0x29 ) << 0) | ((mbedtls_mpi_uint) ( 0xDC ) << 8) | ((mbedtls_mpi_uint) ( 0x92 ) << 16) | ((mbedtls_mpi_uint) ( 0x92 ) << 24), ((mbedtls_mpi_uint) ( 0xBF ) << 0) | ((mbedtls_mpi_uint) ( 0x98 ) << 8) | ((mbedtls_mpi_uint) ( 0x9E ) << 16) | ((mbedtls_mpi_uint) ( 0x5D ) << 24),
((mbedtls_mpi_uint) ( 0x6F ) << 0) | ((mbedtls_mpi_uint) ( 0x2C ) << 8) | ((mbedtls_mpi_uint) ( 0x26 ) << 16) | ((mbedtls_mpi_uint) ( 0x96 ) << 24), ((mbedtls_mpi_uint) ( 0x4A ) << 0) | ((mbedtls_mpi_uint) ( 0xDE ) << 8) | ((mbedtls_mpi_uint) ( 0x17 ) << 16) | ((mbedtls_mpi_uint) ( 0x36 ) << 24),
}

Definition at line 182 of file ecp_curves.c.

◆ secp384r1_n

const mbedtls_mpi_uint secp384r1_n[]
static
Initial value:
= {
((mbedtls_mpi_uint) ( 0x73 ) << 0) | ((mbedtls_mpi_uint) ( 0x29 ) << 8) | ((mbedtls_mpi_uint) ( 0xC5 ) << 16) | ((mbedtls_mpi_uint) ( 0xCC ) << 24), ((mbedtls_mpi_uint) ( 0x6A ) << 0) | ((mbedtls_mpi_uint) ( 0x19 ) << 8) | ((mbedtls_mpi_uint) ( 0xEC ) << 16) | ((mbedtls_mpi_uint) ( 0xEC ) << 24),
((mbedtls_mpi_uint) ( 0x7A ) << 0) | ((mbedtls_mpi_uint) ( 0xA7 ) << 8) | ((mbedtls_mpi_uint) ( 0xB0 ) << 16) | ((mbedtls_mpi_uint) ( 0x48 ) << 24), ((mbedtls_mpi_uint) ( 0xB2 ) << 0) | ((mbedtls_mpi_uint) ( 0x0D ) << 8) | ((mbedtls_mpi_uint) ( 0x1A ) << 16) | ((mbedtls_mpi_uint) ( 0x58 ) << 24),
((mbedtls_mpi_uint) ( 0xDF ) << 0) | ((mbedtls_mpi_uint) ( 0x2D ) << 8) | ((mbedtls_mpi_uint) ( 0x37 ) << 16) | ((mbedtls_mpi_uint) ( 0xF4 ) << 24), ((mbedtls_mpi_uint) ( 0x81 ) << 0) | ((mbedtls_mpi_uint) ( 0x4D ) << 8) | ((mbedtls_mpi_uint) ( 0x63 ) << 16) | ((mbedtls_mpi_uint) ( 0xC7 ) << 24),
((mbedtls_mpi_uint) ( 0xFF ) << 0) | ((mbedtls_mpi_uint) ( 0xFF ) << 8) | ((mbedtls_mpi_uint) ( 0xFF ) << 16) | ((mbedtls_mpi_uint) ( 0xFF ) << 24), ((mbedtls_mpi_uint) ( 0xFF ) << 0) | ((mbedtls_mpi_uint) ( 0xFF ) << 8) | ((mbedtls_mpi_uint) ( 0xFF ) << 16) | ((mbedtls_mpi_uint) ( 0xFF ) << 24),
((mbedtls_mpi_uint) ( 0xFF ) << 0) | ((mbedtls_mpi_uint) ( 0xFF ) << 8) | ((mbedtls_mpi_uint) ( 0xFF ) << 16) | ((mbedtls_mpi_uint) ( 0xFF ) << 24), ((mbedtls_mpi_uint) ( 0xFF ) << 0) | ((mbedtls_mpi_uint) ( 0xFF ) << 8) | ((mbedtls_mpi_uint) ( 0xFF ) << 16) | ((mbedtls_mpi_uint) ( 0xFF ) << 24),
((mbedtls_mpi_uint) ( 0xFF ) << 0) | ((mbedtls_mpi_uint) ( 0xFF ) << 8) | ((mbedtls_mpi_uint) ( 0xFF ) << 16) | ((mbedtls_mpi_uint) ( 0xFF ) << 24), ((mbedtls_mpi_uint) ( 0xFF ) << 0) | ((mbedtls_mpi_uint) ( 0xFF ) << 8) | ((mbedtls_mpi_uint) ( 0xFF ) << 16) | ((mbedtls_mpi_uint) ( 0xFF ) << 24),
}

Definition at line 190 of file ecp_curves.c.

◆ secp384r1_p

const mbedtls_mpi_uint secp384r1_p[]
static
Initial value:
= {
((mbedtls_mpi_uint) ( 0xFF ) << 0) | ((mbedtls_mpi_uint) ( 0xFF ) << 8) | ((mbedtls_mpi_uint) ( 0xFF ) << 16) | ((mbedtls_mpi_uint) ( 0xFF ) << 24), ((mbedtls_mpi_uint) ( 0x00 ) << 0) | ((mbedtls_mpi_uint) ( 0x00 ) << 8) | ((mbedtls_mpi_uint) ( 0x00 ) << 16) | ((mbedtls_mpi_uint) ( 0x00 ) << 24),
((mbedtls_mpi_uint) ( 0x00 ) << 0) | ((mbedtls_mpi_uint) ( 0x00 ) << 8) | ((mbedtls_mpi_uint) ( 0x00 ) << 16) | ((mbedtls_mpi_uint) ( 0x00 ) << 24), ((mbedtls_mpi_uint) ( 0xFF ) << 0) | ((mbedtls_mpi_uint) ( 0xFF ) << 8) | ((mbedtls_mpi_uint) ( 0xFF ) << 16) | ((mbedtls_mpi_uint) ( 0xFF ) << 24),
((mbedtls_mpi_uint) ( 0xFE ) << 0) | ((mbedtls_mpi_uint) ( 0xFF ) << 8) | ((mbedtls_mpi_uint) ( 0xFF ) << 16) | ((mbedtls_mpi_uint) ( 0xFF ) << 24), ((mbedtls_mpi_uint) ( 0xFF ) << 0) | ((mbedtls_mpi_uint) ( 0xFF ) << 8) | ((mbedtls_mpi_uint) ( 0xFF ) << 16) | ((mbedtls_mpi_uint) ( 0xFF ) << 24),
((mbedtls_mpi_uint) ( 0xFF ) << 0) | ((mbedtls_mpi_uint) ( 0xFF ) << 8) | ((mbedtls_mpi_uint) ( 0xFF ) << 16) | ((mbedtls_mpi_uint) ( 0xFF ) << 24), ((mbedtls_mpi_uint) ( 0xFF ) << 0) | ((mbedtls_mpi_uint) ( 0xFF ) << 8) | ((mbedtls_mpi_uint) ( 0xFF ) << 16) | ((mbedtls_mpi_uint) ( 0xFF ) << 24),
((mbedtls_mpi_uint) ( 0xFF ) << 0) | ((mbedtls_mpi_uint) ( 0xFF ) << 8) | ((mbedtls_mpi_uint) ( 0xFF ) << 16) | ((mbedtls_mpi_uint) ( 0xFF ) << 24), ((mbedtls_mpi_uint) ( 0xFF ) << 0) | ((mbedtls_mpi_uint) ( 0xFF ) << 8) | ((mbedtls_mpi_uint) ( 0xFF ) << 16) | ((mbedtls_mpi_uint) ( 0xFF ) << 24),
((mbedtls_mpi_uint) ( 0xFF ) << 0) | ((mbedtls_mpi_uint) ( 0xFF ) << 8) | ((mbedtls_mpi_uint) ( 0xFF ) << 16) | ((mbedtls_mpi_uint) ( 0xFF ) << 24), ((mbedtls_mpi_uint) ( 0xFF ) << 0) | ((mbedtls_mpi_uint) ( 0xFF ) << 8) | ((mbedtls_mpi_uint) ( 0xFF ) << 16) | ((mbedtls_mpi_uint) ( 0xFF ) << 24),
}

Definition at line 158 of file ecp_curves.c.

◆ secp521r1_b

const mbedtls_mpi_uint secp521r1_b[]
static
Initial value:
= {
((mbedtls_mpi_uint) ( 0x00 ) << 0) | ((mbedtls_mpi_uint) ( 0x3F ) << 8) | ((mbedtls_mpi_uint) ( 0x50 ) << 16) | ((mbedtls_mpi_uint) ( 0x6B ) << 24), ((mbedtls_mpi_uint) ( 0xD4 ) << 0) | ((mbedtls_mpi_uint) ( 0x1F ) << 8) | ((mbedtls_mpi_uint) ( 0x45 ) << 16) | ((mbedtls_mpi_uint) ( 0xEF ) << 24),
((mbedtls_mpi_uint) ( 0xF1 ) << 0) | ((mbedtls_mpi_uint) ( 0x34 ) << 8) | ((mbedtls_mpi_uint) ( 0x2C ) << 16) | ((mbedtls_mpi_uint) ( 0x3D ) << 24), ((mbedtls_mpi_uint) ( 0x88 ) << 0) | ((mbedtls_mpi_uint) ( 0xDF ) << 8) | ((mbedtls_mpi_uint) ( 0x73 ) << 16) | ((mbedtls_mpi_uint) ( 0x35 ) << 24),
((mbedtls_mpi_uint) ( 0x07 ) << 0) | ((mbedtls_mpi_uint) ( 0xBF ) << 8) | ((mbedtls_mpi_uint) ( 0xB1 ) << 16) | ((mbedtls_mpi_uint) ( 0x3B ) << 24), ((mbedtls_mpi_uint) ( 0xBD ) << 0) | ((mbedtls_mpi_uint) ( 0xC0 ) << 8) | ((mbedtls_mpi_uint) ( 0x52 ) << 16) | ((mbedtls_mpi_uint) ( 0x16 ) << 24),
((mbedtls_mpi_uint) ( 0x7B ) << 0) | ((mbedtls_mpi_uint) ( 0x93 ) << 8) | ((mbedtls_mpi_uint) ( 0x7E ) << 16) | ((mbedtls_mpi_uint) ( 0xEC ) << 24), ((mbedtls_mpi_uint) ( 0x51 ) << 0) | ((mbedtls_mpi_uint) ( 0x39 ) << 8) | ((mbedtls_mpi_uint) ( 0x19 ) << 16) | ((mbedtls_mpi_uint) ( 0x56 ) << 24),
((mbedtls_mpi_uint) ( 0xE1 ) << 0) | ((mbedtls_mpi_uint) ( 0x09 ) << 8) | ((mbedtls_mpi_uint) ( 0xF1 ) << 16) | ((mbedtls_mpi_uint) ( 0x8E ) << 24), ((mbedtls_mpi_uint) ( 0x91 ) << 0) | ((mbedtls_mpi_uint) ( 0x89 ) << 8) | ((mbedtls_mpi_uint) ( 0xB4 ) << 16) | ((mbedtls_mpi_uint) ( 0xB8 ) << 24),
((mbedtls_mpi_uint) ( 0xF3 ) << 0) | ((mbedtls_mpi_uint) ( 0x15 ) << 8) | ((mbedtls_mpi_uint) ( 0xB3 ) << 16) | ((mbedtls_mpi_uint) ( 0x99 ) << 24), ((mbedtls_mpi_uint) ( 0x5B ) << 0) | ((mbedtls_mpi_uint) ( 0x72 ) << 8) | ((mbedtls_mpi_uint) ( 0xDA ) << 16) | ((mbedtls_mpi_uint) ( 0xA2 ) << 24),
((mbedtls_mpi_uint) ( 0xEE ) << 0) | ((mbedtls_mpi_uint) ( 0x40 ) << 8) | ((mbedtls_mpi_uint) ( 0x85 ) << 16) | ((mbedtls_mpi_uint) ( 0xB6 ) << 24), ((mbedtls_mpi_uint) ( 0xA0 ) << 0) | ((mbedtls_mpi_uint) ( 0x21 ) << 8) | ((mbedtls_mpi_uint) ( 0x9A ) << 16) | ((mbedtls_mpi_uint) ( 0x92 ) << 24),
((mbedtls_mpi_uint) ( 0x1F ) << 0) | ((mbedtls_mpi_uint) ( 0x9A ) << 8) | ((mbedtls_mpi_uint) ( 0x1C ) << 16) | ((mbedtls_mpi_uint) ( 0x8E ) << 24), ((mbedtls_mpi_uint) ( 0x61 ) << 0) | ((mbedtls_mpi_uint) ( 0xB9 ) << 8) | ((mbedtls_mpi_uint) ( 0x3E ) << 16) | ((mbedtls_mpi_uint) ( 0x95 ) << 24),
((mbedtls_mpi_uint) ( 0x51 ) << 0) | ((mbedtls_mpi_uint) ( 0x00 ) << 8) | ((mbedtls_mpi_uint) ( 0 ) << 16) | ((mbedtls_mpi_uint) ( 0 ) << 24),
}

Definition at line 215 of file ecp_curves.c.

◆ secp521r1_gx

const mbedtls_mpi_uint secp521r1_gx[]
static
Initial value:
= {
((mbedtls_mpi_uint) ( 0x66 ) << 0) | ((mbedtls_mpi_uint) ( 0xBD ) << 8) | ((mbedtls_mpi_uint) ( 0xE5 ) << 16) | ((mbedtls_mpi_uint) ( 0xC2 ) << 24), ((mbedtls_mpi_uint) ( 0x31 ) << 0) | ((mbedtls_mpi_uint) ( 0x7E ) << 8) | ((mbedtls_mpi_uint) ( 0x7E ) << 16) | ((mbedtls_mpi_uint) ( 0xF9 ) << 24),
((mbedtls_mpi_uint) ( 0x9B ) << 0) | ((mbedtls_mpi_uint) ( 0x42 ) << 8) | ((mbedtls_mpi_uint) ( 0x6A ) << 16) | ((mbedtls_mpi_uint) ( 0x85 ) << 24), ((mbedtls_mpi_uint) ( 0xC1 ) << 0) | ((mbedtls_mpi_uint) ( 0xB3 ) << 8) | ((mbedtls_mpi_uint) ( 0x48 ) << 16) | ((mbedtls_mpi_uint) ( 0x33 ) << 24),
((mbedtls_mpi_uint) ( 0xDE ) << 0) | ((mbedtls_mpi_uint) ( 0xA8 ) << 8) | ((mbedtls_mpi_uint) ( 0xFF ) << 16) | ((mbedtls_mpi_uint) ( 0xA2 ) << 24), ((mbedtls_mpi_uint) ( 0x27 ) << 0) | ((mbedtls_mpi_uint) ( 0xC1 ) << 8) | ((mbedtls_mpi_uint) ( 0x1D ) << 16) | ((mbedtls_mpi_uint) ( 0xFE ) << 24),
((mbedtls_mpi_uint) ( 0x28 ) << 0) | ((mbedtls_mpi_uint) ( 0x59 ) << 8) | ((mbedtls_mpi_uint) ( 0xE7 ) << 16) | ((mbedtls_mpi_uint) ( 0xEF ) << 24), ((mbedtls_mpi_uint) ( 0x77 ) << 0) | ((mbedtls_mpi_uint) ( 0x5E ) << 8) | ((mbedtls_mpi_uint) ( 0x4B ) << 16) | ((mbedtls_mpi_uint) ( 0xA1 ) << 24),
((mbedtls_mpi_uint) ( 0xBA ) << 0) | ((mbedtls_mpi_uint) ( 0x3D ) << 8) | ((mbedtls_mpi_uint) ( 0x4D ) << 16) | ((mbedtls_mpi_uint) ( 0x6B ) << 24), ((mbedtls_mpi_uint) ( 0x60 ) << 0) | ((mbedtls_mpi_uint) ( 0xAF ) << 8) | ((mbedtls_mpi_uint) ( 0x28 ) << 16) | ((mbedtls_mpi_uint) ( 0xF8 ) << 24),
((mbedtls_mpi_uint) ( 0x21 ) << 0) | ((mbedtls_mpi_uint) ( 0xB5 ) << 8) | ((mbedtls_mpi_uint) ( 0x3F ) << 16) | ((mbedtls_mpi_uint) ( 0x05 ) << 24), ((mbedtls_mpi_uint) ( 0x39 ) << 0) | ((mbedtls_mpi_uint) ( 0x81 ) << 8) | ((mbedtls_mpi_uint) ( 0x64 ) << 16) | ((mbedtls_mpi_uint) ( 0x9C ) << 24),
((mbedtls_mpi_uint) ( 0x42 ) << 0) | ((mbedtls_mpi_uint) ( 0xB4 ) << 8) | ((mbedtls_mpi_uint) ( 0x95 ) << 16) | ((mbedtls_mpi_uint) ( 0x23 ) << 24), ((mbedtls_mpi_uint) ( 0x66 ) << 0) | ((mbedtls_mpi_uint) ( 0xCB ) << 8) | ((mbedtls_mpi_uint) ( 0x3E ) << 16) | ((mbedtls_mpi_uint) ( 0x9E ) << 24),
((mbedtls_mpi_uint) ( 0xCD ) << 0) | ((mbedtls_mpi_uint) ( 0xE9 ) << 8) | ((mbedtls_mpi_uint) ( 0x04 ) << 16) | ((mbedtls_mpi_uint) ( 0x04 ) << 24), ((mbedtls_mpi_uint) ( 0xB7 ) << 0) | ((mbedtls_mpi_uint) ( 0x06 ) << 8) | ((mbedtls_mpi_uint) ( 0x8E ) << 16) | ((mbedtls_mpi_uint) ( 0x85 ) << 24),
((mbedtls_mpi_uint) ( 0xC6 ) << 0) | ((mbedtls_mpi_uint) ( 0x00 ) << 8) | ((mbedtls_mpi_uint) ( 0 ) << 16) | ((mbedtls_mpi_uint) ( 0 ) << 24),
}

Definition at line 226 of file ecp_curves.c.

◆ secp521r1_gy

const mbedtls_mpi_uint secp521r1_gy[]
static
Initial value:
= {
((mbedtls_mpi_uint) ( 0x50 ) << 0) | ((mbedtls_mpi_uint) ( 0x66 ) << 8) | ((mbedtls_mpi_uint) ( 0xD1 ) << 16) | ((mbedtls_mpi_uint) ( 0x9F ) << 24), ((mbedtls_mpi_uint) ( 0x76 ) << 0) | ((mbedtls_mpi_uint) ( 0x94 ) << 8) | ((mbedtls_mpi_uint) ( 0xBE ) << 16) | ((mbedtls_mpi_uint) ( 0x88 ) << 24),
((mbedtls_mpi_uint) ( 0x40 ) << 0) | ((mbedtls_mpi_uint) ( 0xC2 ) << 8) | ((mbedtls_mpi_uint) ( 0x72 ) << 16) | ((mbedtls_mpi_uint) ( 0xA2 ) << 24), ((mbedtls_mpi_uint) ( 0x86 ) << 0) | ((mbedtls_mpi_uint) ( 0x70 ) << 8) | ((mbedtls_mpi_uint) ( 0x3C ) << 16) | ((mbedtls_mpi_uint) ( 0x35 ) << 24),
((mbedtls_mpi_uint) ( 0x61 ) << 0) | ((mbedtls_mpi_uint) ( 0x07 ) << 8) | ((mbedtls_mpi_uint) ( 0xAD ) << 16) | ((mbedtls_mpi_uint) ( 0x3F ) << 24), ((mbedtls_mpi_uint) ( 0x01 ) << 0) | ((mbedtls_mpi_uint) ( 0xB9 ) << 8) | ((mbedtls_mpi_uint) ( 0x50 ) << 16) | ((mbedtls_mpi_uint) ( 0xC5 ) << 24),
((mbedtls_mpi_uint) ( 0x40 ) << 0) | ((mbedtls_mpi_uint) ( 0x26 ) << 8) | ((mbedtls_mpi_uint) ( 0xF4 ) << 16) | ((mbedtls_mpi_uint) ( 0x5E ) << 24), ((mbedtls_mpi_uint) ( 0x99 ) << 0) | ((mbedtls_mpi_uint) ( 0x72 ) << 8) | ((mbedtls_mpi_uint) ( 0xEE ) << 16) | ((mbedtls_mpi_uint) ( 0x97 ) << 24),
((mbedtls_mpi_uint) ( 0x2C ) << 0) | ((mbedtls_mpi_uint) ( 0x66 ) << 8) | ((mbedtls_mpi_uint) ( 0x3E ) << 16) | ((mbedtls_mpi_uint) ( 0x27 ) << 24), ((mbedtls_mpi_uint) ( 0x17 ) << 0) | ((mbedtls_mpi_uint) ( 0xBD ) << 8) | ((mbedtls_mpi_uint) ( 0xAF ) << 16) | ((mbedtls_mpi_uint) ( 0x17 ) << 24),
((mbedtls_mpi_uint) ( 0x68 ) << 0) | ((mbedtls_mpi_uint) ( 0x44 ) << 8) | ((mbedtls_mpi_uint) ( 0x9B ) << 16) | ((mbedtls_mpi_uint) ( 0x57 ) << 24), ((mbedtls_mpi_uint) ( 0x49 ) << 0) | ((mbedtls_mpi_uint) ( 0x44 ) << 8) | ((mbedtls_mpi_uint) ( 0xF5 ) << 16) | ((mbedtls_mpi_uint) ( 0x98 ) << 24),
((mbedtls_mpi_uint) ( 0xD9 ) << 0) | ((mbedtls_mpi_uint) ( 0x1B ) << 8) | ((mbedtls_mpi_uint) ( 0x7D ) << 16) | ((mbedtls_mpi_uint) ( 0x2C ) << 24), ((mbedtls_mpi_uint) ( 0xB4 ) << 0) | ((mbedtls_mpi_uint) ( 0x5F ) << 8) | ((mbedtls_mpi_uint) ( 0x8A ) << 16) | ((mbedtls_mpi_uint) ( 0x5C ) << 24),
((mbedtls_mpi_uint) ( 0x04 ) << 0) | ((mbedtls_mpi_uint) ( 0xC0 ) << 8) | ((mbedtls_mpi_uint) ( 0x3B ) << 16) | ((mbedtls_mpi_uint) ( 0x9A ) << 24), ((mbedtls_mpi_uint) ( 0x78 ) << 0) | ((mbedtls_mpi_uint) ( 0x6A ) << 8) | ((mbedtls_mpi_uint) ( 0x29 ) << 16) | ((mbedtls_mpi_uint) ( 0x39 ) << 24),
((mbedtls_mpi_uint) ( 0x18 ) << 0) | ((mbedtls_mpi_uint) ( 0x01 ) << 8) | ((mbedtls_mpi_uint) ( 0 ) << 16) | ((mbedtls_mpi_uint) ( 0 ) << 24),
}

Definition at line 237 of file ecp_curves.c.

◆ secp521r1_n

const mbedtls_mpi_uint secp521r1_n[]
static
Initial value:
= {
((mbedtls_mpi_uint) ( 0x09 ) << 0) | ((mbedtls_mpi_uint) ( 0x64 ) << 8) | ((mbedtls_mpi_uint) ( 0x38 ) << 16) | ((mbedtls_mpi_uint) ( 0x91 ) << 24), ((mbedtls_mpi_uint) ( 0x1E ) << 0) | ((mbedtls_mpi_uint) ( 0xB7 ) << 8) | ((mbedtls_mpi_uint) ( 0x6F ) << 16) | ((mbedtls_mpi_uint) ( 0xBB ) << 24),
((mbedtls_mpi_uint) ( 0xAE ) << 0) | ((mbedtls_mpi_uint) ( 0x47 ) << 8) | ((mbedtls_mpi_uint) ( 0x9C ) << 16) | ((mbedtls_mpi_uint) ( 0x89 ) << 24), ((mbedtls_mpi_uint) ( 0xB8 ) << 0) | ((mbedtls_mpi_uint) ( 0xC9 ) << 8) | ((mbedtls_mpi_uint) ( 0xB5 ) << 16) | ((mbedtls_mpi_uint) ( 0x3B ) << 24),
((mbedtls_mpi_uint) ( 0xD0 ) << 0) | ((mbedtls_mpi_uint) ( 0xA5 ) << 8) | ((mbedtls_mpi_uint) ( 0x09 ) << 16) | ((mbedtls_mpi_uint) ( 0xF7 ) << 24), ((mbedtls_mpi_uint) ( 0x48 ) << 0) | ((mbedtls_mpi_uint) ( 0x01 ) << 8) | ((mbedtls_mpi_uint) ( 0xCC ) << 16) | ((mbedtls_mpi_uint) ( 0x7F ) << 24),
((mbedtls_mpi_uint) ( 0x6B ) << 0) | ((mbedtls_mpi_uint) ( 0x96 ) << 8) | ((mbedtls_mpi_uint) ( 0x2F ) << 16) | ((mbedtls_mpi_uint) ( 0xBF ) << 24), ((mbedtls_mpi_uint) ( 0x83 ) << 0) | ((mbedtls_mpi_uint) ( 0x87 ) << 8) | ((mbedtls_mpi_uint) ( 0x86 ) << 16) | ((mbedtls_mpi_uint) ( 0x51 ) << 24),
((mbedtls_mpi_uint) ( 0xFA ) << 0) | ((mbedtls_mpi_uint) ( 0xFF ) << 8) | ((mbedtls_mpi_uint) ( 0xFF ) << 16) | ((mbedtls_mpi_uint) ( 0xFF ) << 24), ((mbedtls_mpi_uint) ( 0xFF ) << 0) | ((mbedtls_mpi_uint) ( 0xFF ) << 8) | ((mbedtls_mpi_uint) ( 0xFF ) << 16) | ((mbedtls_mpi_uint) ( 0xFF ) << 24),
((mbedtls_mpi_uint) ( 0xFF ) << 0) | ((mbedtls_mpi_uint) ( 0xFF ) << 8) | ((mbedtls_mpi_uint) ( 0xFF ) << 16) | ((mbedtls_mpi_uint) ( 0xFF ) << 24), ((mbedtls_mpi_uint) ( 0xFF ) << 0) | ((mbedtls_mpi_uint) ( 0xFF ) << 8) | ((mbedtls_mpi_uint) ( 0xFF ) << 16) | ((mbedtls_mpi_uint) ( 0xFF ) << 24),
((mbedtls_mpi_uint) ( 0xFF ) << 0) | ((mbedtls_mpi_uint) ( 0xFF ) << 8) | ((mbedtls_mpi_uint) ( 0xFF ) << 16) | ((mbedtls_mpi_uint) ( 0xFF ) << 24), ((mbedtls_mpi_uint) ( 0xFF ) << 0) | ((mbedtls_mpi_uint) ( 0xFF ) << 8) | ((mbedtls_mpi_uint) ( 0xFF ) << 16) | ((mbedtls_mpi_uint) ( 0xFF ) << 24),
((mbedtls_mpi_uint) ( 0xFF ) << 0) | ((mbedtls_mpi_uint) ( 0xFF ) << 8) | ((mbedtls_mpi_uint) ( 0xFF ) << 16) | ((mbedtls_mpi_uint) ( 0xFF ) << 24), ((mbedtls_mpi_uint) ( 0xFF ) << 0) | ((mbedtls_mpi_uint) ( 0xFF ) << 8) | ((mbedtls_mpi_uint) ( 0xFF ) << 16) | ((mbedtls_mpi_uint) ( 0xFF ) << 24),
((mbedtls_mpi_uint) ( 0xFF ) << 0) | ((mbedtls_mpi_uint) ( 0x01 ) << 8) | ((mbedtls_mpi_uint) ( 0 ) << 16) | ((mbedtls_mpi_uint) ( 0 ) << 24),
}

Definition at line 248 of file ecp_curves.c.

◆ secp521r1_p

const mbedtls_mpi_uint secp521r1_p[]
static
Initial value:
= {
((mbedtls_mpi_uint) ( 0xFF ) << 0) | ((mbedtls_mpi_uint) ( 0xFF ) << 8) | ((mbedtls_mpi_uint) ( 0xFF ) << 16) | ((mbedtls_mpi_uint) ( 0xFF ) << 24), ((mbedtls_mpi_uint) ( 0xFF ) << 0) | ((mbedtls_mpi_uint) ( 0xFF ) << 8) | ((mbedtls_mpi_uint) ( 0xFF ) << 16) | ((mbedtls_mpi_uint) ( 0xFF ) << 24),
((mbedtls_mpi_uint) ( 0xFF ) << 0) | ((mbedtls_mpi_uint) ( 0xFF ) << 8) | ((mbedtls_mpi_uint) ( 0xFF ) << 16) | ((mbedtls_mpi_uint) ( 0xFF ) << 24), ((mbedtls_mpi_uint) ( 0xFF ) << 0) | ((mbedtls_mpi_uint) ( 0xFF ) << 8) | ((mbedtls_mpi_uint) ( 0xFF ) << 16) | ((mbedtls_mpi_uint) ( 0xFF ) << 24),
((mbedtls_mpi_uint) ( 0xFF ) << 0) | ((mbedtls_mpi_uint) ( 0xFF ) << 8) | ((mbedtls_mpi_uint) ( 0xFF ) << 16) | ((mbedtls_mpi_uint) ( 0xFF ) << 24), ((mbedtls_mpi_uint) ( 0xFF ) << 0) | ((mbedtls_mpi_uint) ( 0xFF ) << 8) | ((mbedtls_mpi_uint) ( 0xFF ) << 16) | ((mbedtls_mpi_uint) ( 0xFF ) << 24),
((mbedtls_mpi_uint) ( 0xFF ) << 0) | ((mbedtls_mpi_uint) ( 0xFF ) << 8) | ((mbedtls_mpi_uint) ( 0xFF ) << 16) | ((mbedtls_mpi_uint) ( 0xFF ) << 24), ((mbedtls_mpi_uint) ( 0xFF ) << 0) | ((mbedtls_mpi_uint) ( 0xFF ) << 8) | ((mbedtls_mpi_uint) ( 0xFF ) << 16) | ((mbedtls_mpi_uint) ( 0xFF ) << 24),
((mbedtls_mpi_uint) ( 0xFF ) << 0) | ((mbedtls_mpi_uint) ( 0xFF ) << 8) | ((mbedtls_mpi_uint) ( 0xFF ) << 16) | ((mbedtls_mpi_uint) ( 0xFF ) << 24), ((mbedtls_mpi_uint) ( 0xFF ) << 0) | ((mbedtls_mpi_uint) ( 0xFF ) << 8) | ((mbedtls_mpi_uint) ( 0xFF ) << 16) | ((mbedtls_mpi_uint) ( 0xFF ) << 24),
((mbedtls_mpi_uint) ( 0xFF ) << 0) | ((mbedtls_mpi_uint) ( 0xFF ) << 8) | ((mbedtls_mpi_uint) ( 0xFF ) << 16) | ((mbedtls_mpi_uint) ( 0xFF ) << 24), ((mbedtls_mpi_uint) ( 0xFF ) << 0) | ((mbedtls_mpi_uint) ( 0xFF ) << 8) | ((mbedtls_mpi_uint) ( 0xFF ) << 16) | ((mbedtls_mpi_uint) ( 0xFF ) << 24),
((mbedtls_mpi_uint) ( 0xFF ) << 0) | ((mbedtls_mpi_uint) ( 0xFF ) << 8) | ((mbedtls_mpi_uint) ( 0xFF ) << 16) | ((mbedtls_mpi_uint) ( 0xFF ) << 24), ((mbedtls_mpi_uint) ( 0xFF ) << 0) | ((mbedtls_mpi_uint) ( 0xFF ) << 8) | ((mbedtls_mpi_uint) ( 0xFF ) << 16) | ((mbedtls_mpi_uint) ( 0xFF ) << 24),
((mbedtls_mpi_uint) ( 0xFF ) << 0) | ((mbedtls_mpi_uint) ( 0xFF ) << 8) | ((mbedtls_mpi_uint) ( 0xFF ) << 16) | ((mbedtls_mpi_uint) ( 0xFF ) << 24), ((mbedtls_mpi_uint) ( 0xFF ) << 0) | ((mbedtls_mpi_uint) ( 0xFF ) << 8) | ((mbedtls_mpi_uint) ( 0xFF ) << 16) | ((mbedtls_mpi_uint) ( 0xFF ) << 24),
((mbedtls_mpi_uint) ( 0xFF ) << 0) | ((mbedtls_mpi_uint) ( 0x01 ) << 8) | ((mbedtls_mpi_uint) ( 0 ) << 16) | ((mbedtls_mpi_uint) ( 0 ) << 24),
}

Definition at line 204 of file ecp_curves.c.

Modified on Wed Nov 29 02:26:21 2023 by modify_doxy.py rev. 669887