iPXE
ecdsa_sha512.c File Reference
#include <ipxe/ecdsa.h>
#include <ipxe/sha512.h>
#include <ipxe/asn1.h>
#include <ipxe/tls.h>

Go to the source code of this file.

Functions

 FILE_LICENCE (GPL2_OR_LATER_OR_UBDL)
 FILE_SECBOOT (PERMITTED)

Variables

static uint8_t oid_ecdsa_with_sha512 [] = { ASN1_OID_ECDSA_WITH_SHA512 }
 "ecdsa-with-SHA512" object identifier
struct asn1_algorithm ecdsa_with_sha512_algorithm __asn1_algorithm
 "ecdsa-with-SHA512" OID-identified algorithm
struct tls_signature_hash_algorithm tls_ecdsa_sha512 __tls_sig_hash_algorithm
 ECDSA with SHA-512 signature hash algorithm.

Function Documentation

◆ FILE_LICENCE()

FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL )

◆ FILE_SECBOOT()

FILE_SECBOOT ( PERMITTED )

Variable Documentation

◆ oid_ecdsa_with_sha512

uint8_t oid_ecdsa_with_sha512[] = { ASN1_OID_ECDSA_WITH_SHA512 }
static

"ecdsa-with-SHA512" object identifier

Definition at line 33 of file ecdsa_sha512.c.

#define ASN1_OID_ECDSA_WITH_SHA512
ASN.1 OID for ecdsa-with-SHA512 (1.2.840.10045.4.3.4)
Definition asn1.h:162

◆ __asn1_algorithm

struct asn1_algorithm ecdsa_with_sha512_algorithm __asn1_algorithm
Initial value:
= {
.name = "ecdsaWithSHA512",
.pubkey = &ecdsa_algorithm,
.digest = &sha512_algorithm,
}
#define ASN1_CURSOR(value)
Define an ASN.1 cursor for a static value.
Definition asn1.h:402
struct pubkey_algorithm ecdsa_algorithm
ECDSA public-key algorithm.
Definition ecdsa.c:937
static uint8_t oid_ecdsa_with_sha512[]
"ecdsa-with-SHA512" object identifier
struct digest_algorithm sha512_algorithm
SHA-512 algorithm.
Definition sha512.c:285

"ecdsa-with-SHA512" OID-identified algorithm

Generic elliptic curve container algorithm.

Definition at line 36 of file ecdsa_sha512.c.

36 {
37 .name = "ecdsaWithSHA512",
38 .pubkey = &ecdsa_algorithm,
39 .digest = &sha512_algorithm,
41};

◆ __tls_sig_hash_algorithm

struct tls_signature_hash_algorithm tls_ecdsa_sha512 __tls_sig_hash_algorithm
Initial value:
= {
.code = {
.signature = TLS_ECDSA_ALGORITHM,
},
.pubkey = &ecdsa_algorithm,
.digest = &sha512_algorithm,
}
#define TLS_ECDSA_ALGORITHM
Definition tls.h:123
#define TLS_SHA512_ALGORITHM
Definition tls.h:119

ECDSA with SHA-512 signature hash algorithm.

Definition at line 45 of file ecdsa_sha512.c.

45 {
46 .code = {
47 .signature = TLS_ECDSA_ALGORITHM,
49 },
50 .pubkey = &ecdsa_algorithm,
51 .digest = &sha512_algorithm,
52};