/* 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[] = { 0 xF4FF0AFD82FF1012ull, 0 x7CBF20EB43A18800ull,
0 x188DA80EB03090F6ull };
static u64 nist_p192_g_y[] = { 0 x73F977A11E794811ull, 0 x631011ED6B24CDD5ull,
0 x07192B95FFC8DA78ull };
static u64 nist_p192_p[] = { 0 xFFFFFFFFFFFFFFFFull, 0 xFFFFFFFFFFFFFFFEull,
0 xFFFFFFFFFFFFFFFFull };
static u64 nist_p192_n[] = { 0 x146BC9B1B4D22831ull, 0 xFFFFFFFF99DEF836ull,
0 xFFFFFFFFFFFFFFFFull };
static u64 nist_p192_a[] = { 0 xFFFFFFFFFFFFFFFCull, 0 xFFFFFFFFFFFFFFFEull,
0 xFFFFFFFFFFFFFFFFull };
static u64 nist_p192_b[] = { 0 xFEB8DEECC146B9B1ull, 0 x0FA7E9AB72243049ull,
0 x64210519E59C80E7ull };
static struct ecc_curve nist_p192 = {
.name = "nist_192" ,
.nbits = 192 ,
.g = {
.x = nist_p192_g_x,
.y = nist_p192_g_y,
.ndigits = 3 ,
},
.p = nist_p192_p,
.n = nist_p192_n,
.a = nist_p192_a,
.b = nist_p192_b
};
/* NIST P-256: a = p - 3 */
static u64 nist_p256_g_x[] = { 0 xF4A13945D898C296ull, 0 x77037D812DEB33A0ull,
0 xF8BCE6E563A440F2ull, 0 x6B17D1F2E12C4247ull };
static u64 nist_p256_g_y[] = { 0 xCBB6406837BF51F5ull, 0 x2BCE33576B315ECEull,
0 x8EE7EB4A7C0F9E16ull, 0 x4FE342E2FE1A7F9Bull };
static u64 nist_p256_p[] = { 0 xFFFFFFFFFFFFFFFFull, 0 x00000000FFFFFFFFull,
0 x0000000000000000ull, 0 xFFFFFFFF00000001ull };
static u64 nist_p256_n[] = { 0 xF3B9CAC2FC632551ull, 0 xBCE6FAADA7179E84ull,
0 xFFFFFFFFFFFFFFFFull, 0 xFFFFFFFF00000000ull };
static u64 nist_p256_a[] = { 0 xFFFFFFFFFFFFFFFCull, 0 x00000000FFFFFFFFull,
0 x0000000000000000ull, 0 xFFFFFFFF00000001ull };
static u64 nist_p256_b[] = { 0 x3BCE3C3E27D2604Bull, 0 x651D06B0CC53B0F6ull,
0 xB3EBBD55769886BCull, 0 x5AC635D8AA3A93E7ull };
static struct ecc_curve nist_p256 = {
.name = "nist_256" ,
.nbits = 256 ,
.g = {
.x = nist_p256_g_x,
.y = nist_p256_g_y,
.ndigits = 4 ,
},
.p = nist_p256_p,
.n = nist_p256_n,
.a = nist_p256_a,
.b = nist_p256_b
};
/* NIST P-384 */
static u64 nist_p384_g_x[] = { 0 x3A545E3872760AB7ull, 0 x5502F25DBF55296Cull,
0 x59F741E082542A38ull, 0 x6E1D3B628BA79B98ull,
0 x8Eb1C71EF320AD74ull, 0 xAA87CA22BE8B0537ull };
static u64 nist_p384_g_y[] = { 0 x7A431D7C90EA0E5Full, 0 x0A60B1CE1D7E819Dull,
0 xE9DA3113B5F0B8C0ull, 0 xF8F41DBD289A147Cull,
0 x5D9E98BF9292DC29ull, 0 x3617DE4A96262C6Full };
static u64 nist_p384_p[] = { 0 x00000000FFFFFFFFull, 0 xFFFFFFFF00000000ull,
0 xFFFFFFFFFFFFFFFEull, 0 xFFFFFFFFFFFFFFFFull,
0 xFFFFFFFFFFFFFFFFull, 0 xFFFFFFFFFFFFFFFFull };
static u64 nist_p384_n[] = { 0 xECEC196ACCC52973ull, 0 x581A0DB248B0A77Aull,
0 xC7634D81F4372DDFull, 0 xFFFFFFFFFFFFFFFFull,
0 xFFFFFFFFFFFFFFFFull, 0 xFFFFFFFFFFFFFFFFull };
static u64 nist_p384_a[] = { 0 x00000000FFFFFFFCull, 0 xFFFFFFFF00000000ull,
0 xFFFFFFFFFFFFFFFEull, 0 xFFFFFFFFFFFFFFFFull,
0 xFFFFFFFFFFFFFFFFull, 0 xFFFFFFFFFFFFFFFFull };
static u64 nist_p384_b[] = { 0 x2a85c8edd3ec2aefull, 0 xc656398d8a2ed19dull,
0 x0314088f5013875aull, 0 x181d9c6efe814112ull,
0 x988e056be3f82d19ull, 0 xb3312fa7e23ee7e4ull };
static struct ecc_curve nist_p384 = {
.name = "nist_384" ,
.nbits = 384 ,
.g = {
.x = nist_p384_g_x,
.y = nist_p384_g_y,
.ndigits = 6 ,
},
.p = nist_p384_p,
.n = nist_p384_n,
.a = nist_p384_a,
.b = nist_p384_b
};
/* NIST P-521 */
static u64 nist_p521_g_x[] = { 0 xf97e7e31c2e5bd66ull, 0 x3348b3c1856a429bull,
0 xfe1dc127a2ffa8deull, 0 xa14b5e77efe75928ull,
0 xf828af606b4d3dbaull, 0 x9c648139053fb521ull,
0 x9e3ecb662395b442ull, 0 x858e06b70404e9cdull,
0 xc6ull };
static u64 nist_p521_g_y[] = { 0 x88be94769fd16650ull, 0 x353c7086a272c240ull,
0 xc550b9013fad0761ull, 0 x97ee72995ef42640ull,
0 x17afbd17273e662cull, 0 x98f54449579b4468ull,
0 x5c8a5fb42c7d1bd9ull, 0 x39296a789a3bc004ull,
0 x118ull };
static u64 nist_p521_p[] = { 0 xffffffffffffffffull, 0 xffffffffffffffffull,
0 xffffffffffffffffull, 0 xffffffffffffffffull,
0 xffffffffffffffffull, 0 xffffffffffffffffull,
0 xffffffffffffffffull, 0 xffffffffffffffffull,
0 x1ffull };
static u64 nist_p521_n[] = { 0 xbb6fb71e91386409ull, 0 x3bb5c9b8899c47aeull,
0 x7fcc0148f709a5d0ull, 0 x51868783bf2f966bull,
0 xfffffffffffffffaull, 0 xffffffffffffffffull,
0 xffffffffffffffffull, 0 xffffffffffffffffull,
0 x1ffull };
static u64 nist_p521_a[] = { 0 xfffffffffffffffcull, 0 xffffffffffffffffull,
0 xffffffffffffffffull, 0 xffffffffffffffffull,
0 xffffffffffffffffull, 0 xffffffffffffffffull,
0 xffffffffffffffffull, 0 xffffffffffffffffull,
0 x1ffull };
static u64 nist_p521_b[] = { 0 xef451fd46b503f00ull, 0 x3573df883d2c34f1ull,
0 x1652c0bd3bb1bf07ull, 0 x56193951ec7e937bull,
0 xb8b489918ef109e1ull, 0 xa2da725b99b315f3ull,
0 x929a21a0b68540eeull, 0 x953eb9618e1c9a1full,
0 x051ull };
static struct ecc_curve nist_p521 = {
.name = "nist_521" ,
.nbits = 521 ,
.g = {
.x = nist_p521_g_x,
.y = nist_p521_g_y,
.ndigits = 9 ,
},
.p = nist_p521_p,
.n = nist_p521_n,
.a = nist_p521_a,
.b = nist_p521_b
};
/* curve25519 */
static u64 curve25519_g_x[] = { 0 x0000000000000009, 0 x0000000000000000,
0 x0000000000000000, 0 x0000000000000000 };
static u64 curve25519_p[] = { 0 xffffffffffffffed, 0 xffffffffffffffff,
0 xffffffffffffffff, 0 x7fffffffffffffff };
static u64 curve25519_a[] = { 0 x000000000001DB41, 0 x0000000000000000,
0 x0000000000000000, 0 x0000000000000000 };
static const struct ecc_curve ecc_25519 = {
.name = "curve25519" ,
.nbits = 255 ,
.g = {
.x = curve25519_g_x,
.ndigits = 4 ,
},
.p = curve25519_p,
.a = curve25519_a,
};
#endif
Messung V0.5 in Prozent C=97 H=100 G=98
¤ Dauer der Verarbeitung: 0.8 Sekunden
(vorverarbeitet am 2026-06-07)
¤
*© Formatika GbR, Deutschland