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 
10 FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
11 FILE_SECBOOT ( PERMITTED );
12 
13 #include <ipxe/crypto.h>
14 
15 /** Uncompressed curve point */
16 #define ECDSA_UNCOMPRESSED 0x04
17 
18 extern struct pubkey_algorithm ecdsa_algorithm;
19 
20 #endif /* _IPXE_ECDSA_H */
Cryptographic API.
FILE_SECBOOT(PERMITTED)
struct pubkey_algorithm ecdsa_algorithm
ECDSA public-key algorithm.
Definition: ecdsa.c:937
FILE_LICENCE(GPL2_OR_LATER_OR_UBDL)
A public key algorithm.
Definition: crypto.h:122