iPXE
ecdsa.h
Go to the documentation of this file.
1#ifndef _IPXE_ECDSA_H
2#define _IPXE_ECDSA_H
3
4/** @file
5 *
6 * Elliptic curve digital signature algorithm (ECDSA)
7 *
8 */
9
10FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
11FILE_SECBOOT ( PERMITTED );
12
13#include <ipxe/crypto.h>
14
15/** Uncompressed curve point */
16#define ECDSA_UNCOMPRESSED 0x04
17
19
20#endif /* _IPXE_ECDSA_H */
struct pubkey_algorithm ecdsa_algorithm
ECDSA public-key algorithm.
Definition ecdsa.c:937
#define FILE_LICENCE(_licence)
Declare a particular licence as applying to a file.
Definition compiler.h:896
#define FILE_SECBOOT(_status)
Declare a file's UEFI Secure Boot permission status.
Definition compiler.h:926
Cryptographic API.
A public key algorithm.
Definition crypto.h:122