3 /* Compile time constant (but machine dependent) tables. */
5 /* nettle, low-level cryptographics library
7 * Copyright (C) 2013 Niels Möller
9 * The nettle library is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU Lesser General Public License as published by
11 * the Free Software Foundation; either version 2.1 of the License, or (at your
12 * option) any later version.
14 * The nettle library is distributed in the hope that it will be useful, but
15 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
16 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
17 * License for more details.
19 * You should have received a copy of the GNU Lesser General Public License
20 * along with the nettle library; see the file COPYING.LIB. If not, write to
21 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
25 /* Development of Nettle's ECC support was funded by the .SE Internet Fund. */
31 #include "ecc-internal.h"
33 #if HAVE_NATIVE_ecc_224_modp
36 #define ecc_224_modp nettle_ecc_224_modp
38 ecc_224_modp (const struct ecc_curve
*ecc
, mp_limb_t
*rp
);
41 #define USE_REDC (ECC_REDC_SIZE != 0)
42 #define ecc_224_modp ecc_generic_modp
47 const struct ecc_curve nettle_secp_224r1
=
64 USE_REDC
? ecc_generic_redc
: ecc_224_modp
,