iPXE
oid_md4.c File Reference
#include <ipxe/md4.h>
#include <ipxe/asn1.h>

Go to the source code of this file.

Functions

 FILE_LICENCE (GPL2_OR_LATER_OR_UBDL)
 FILE_SECBOOT (FORBIDDEN)

Variables

static uint8_t oid_md4 [] = { ASN1_OID_MD4 }
 "md4" object identifier
struct asn1_algorithm oid_md4_algorithm __asn1_algorithm
 "md4" OID-identified algorithm

Function Documentation

◆ FILE_LICENCE()

FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL )

◆ FILE_SECBOOT()

FILE_SECBOOT ( FORBIDDEN )

Variable Documentation

◆ oid_md4

uint8_t oid_md4[] = { ASN1_OID_MD4 }
static

"md4" object identifier

Definition at line 31 of file oid_md4.c.

31{ ASN1_OID_MD4 };
#define ASN1_OID_MD4
ASN.1 OID for id-md4 (1.2.840.113549.2.4)
Definition asn1.h:210

Referenced by PROVIDE_REQUIRING_SYMBOL().

◆ __asn1_algorithm

struct asn1_algorithm oid_md4_algorithm __asn1_algorithm
Initial value:
= {
.name = "md4",
.digest = &md4_algorithm,
.oid = ASN1_CURSOR ( oid_md4 ),
}
#define ASN1_CURSOR(value)
Define an ASN.1 cursor for a static value.
Definition asn1.h:402
struct digest_algorithm md4_algorithm
MD4 algorithm.
Definition md4.c:262
static uint8_t oid_md4[]
"md4" object identifier
Definition oid_md4.c:31

"md4" OID-identified algorithm

Generic elliptic curve container algorithm.

Definition at line 34 of file oid_md4.c.

34 {
35 .name = "md4",
36 .digest = &md4_algorithm,
37 .oid = ASN1_CURSOR ( oid_md4 ),
38};