linux/crypto/ecc_curve_defs.h

/* SPDX-License-Identifier: GPL-2.0 */
#ifndef _CRYTO_ECC_CURVE_DEFS_H
#define _CRYTO_ECC_CURVE_DEFS_H

/* NIST P-192: a = p - 3 */
static u64 nist_p192_g_x[] =;
static u64 nist_p192_g_y[] =;
static u64 nist_p192_p[] =;
static u64 nist_p192_n[] =;
static u64 nist_p192_a[] =;
static u64 nist_p192_b[] =;
static struct ecc_curve nist_p192 =;

/* NIST P-256: a = p - 3 */
static u64 nist_p256_g_x[] =;
static u64 nist_p256_g_y[] =;
static u64 nist_p256_p[] =;
static u64 nist_p256_n[] =;
static u64 nist_p256_a[] =;
static u64 nist_p256_b[] =;
static struct ecc_curve nist_p256 =;

/* NIST P-384 */
static u64 nist_p384_g_x[] =;
static u64 nist_p384_g_y[] =;
static u64 nist_p384_p[] =;
static u64 nist_p384_n[] =;
static u64 nist_p384_a[] =;
static u64 nist_p384_b[] =;
static struct ecc_curve nist_p384 =;

/* NIST P-521 */
static u64 nist_p521_g_x[] =;
static u64 nist_p521_g_y[] =;
static u64 nist_p521_p[] =;
static u64 nist_p521_n[] =;
static u64 nist_p521_a[] =;
static u64 nist_p521_b[] =;
static struct ecc_curve nist_p521 =;

/* curve25519 */
static u64 curve25519_g_x[] =;
static u64 curve25519_p[] =;
static u64 curve25519_a[] =;
static const struct ecc_curve ecc_25519 =;

#endif