iPXE
Functions | Variables
ecdsa_sha384.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)
 

Variables

static uint8_t oid_ecdsa_with_sha384 [] = { ASN1_OID_ECDSA_WITH_SHA384 }
 "ecdsa-with-SHA384" object identifier More...
 
struct asn1_algorithm ecdsa_with_sha384_algorithm __asn1_algorithm
 "ecdsa-with-SHA384" OID-identified algorithm More...
 
struct tls_signature_hash_algorithm tls_ecdsa_sha384 __tls_sig_hash_algorithm
 ECDSA with SHA-384 signature hash algorithm. More...
 

Function Documentation

◆ FILE_LICENCE()

FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL  )

Variable Documentation

◆ oid_ecdsa_with_sha384

uint8_t oid_ecdsa_with_sha384[] = { ASN1_OID_ECDSA_WITH_SHA384 }
static

"ecdsa-with-SHA384" object identifier

Definition at line 32 of file ecdsa_sha384.c.

◆ __asn1_algorithm

struct asn1_algorithm ecdsa_with_sha384_algorithm __asn1_algorithm
Initial value:
= {
.name = "ecdsaWithSHA384",
.pubkey = &ecdsa_algorithm,
.digest = &sha384_algorithm,
}
struct digest_algorithm sha384_algorithm
SHA-384 algorithm.
Definition: sha384.c:63
#define ASN1_CURSOR(value)
Define an ASN.1 cursor for a static value.
Definition: asn1.h:401
static uint8_t oid_ecdsa_with_sha384[]
"ecdsa-with-SHA384" object identifier
Definition: ecdsa_sha384.c:32
struct pubkey_algorithm ecdsa_algorithm
ECDSA public-key algorithm.
Definition: ecdsa.c:936

"ecdsa-with-SHA384" OID-identified algorithm

Generic elliptic curve container algorithm.

Definition at line 35 of file ecdsa_sha384.c.

◆ __tls_sig_hash_algorithm

struct tls_signature_hash_algorithm tls_ecdsa_sha384 __tls_sig_hash_algorithm
Initial value:
= {
.code = {
.signature = TLS_ECDSA_ALGORITHM,
},
.pubkey = &ecdsa_algorithm,
.digest = &sha384_algorithm,
}
struct digest_algorithm sha384_algorithm
SHA-384 algorithm.
Definition: sha384.c:63
#define TLS_SHA384_ALGORITHM
Definition: tls.h:117
struct pubkey_algorithm ecdsa_algorithm
ECDSA public-key algorithm.
Definition: ecdsa.c:936
#define TLS_ECDSA_ALGORITHM
Definition: tls.h:122

ECDSA with SHA-384 signature hash algorithm.

Definition at line 44 of file ecdsa_sha384.c.