blob: f4631b5f2a4dbd6d710b0e19756fc8fc33fc3afd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#ifndef _IPXE_P384_H
#define _IPXE_P384_H
/** @file
*
* NIST P-384 elliptic curve
*
*/
FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
#include <ipxe/weierstrass.h>
/** P-384 value length */
#define P384_LEN ( 384 / 8 )
extern struct elliptic_curve p384_curve;
#endif /* _IPXE_P384_H */
|