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