iPXE
oid_md5.c File Reference
#include <ipxe/md5.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_md5 [] = { ASN1_OID_MD5 }
 "md5" object identifier
struct asn1_algorithm oid_md5_algorithm __asn1_algorithm
 "md5" OID-identified algorithm

Function Documentation

◆ FILE_LICENCE()

FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL )

◆ FILE_SECBOOT()

FILE_SECBOOT ( FORBIDDEN )

Variable Documentation

◆ oid_md5

uint8_t oid_md5[] = { ASN1_OID_MD5 }
static

"md5" object identifier

Definition at line 31 of file oid_md5.c.

31{ ASN1_OID_MD5 };
#define ASN1_OID_MD5
ASN.1 OID for id-md5 (1.2.840.113549.2.5)
Definition asn1.h:216

Referenced by PROVIDE_REQUIRING_SYMBOL().

◆ __asn1_algorithm

struct asn1_algorithm oid_md5_algorithm __asn1_algorithm
Initial value:
= {
.name = "md5",
.digest = &md5_algorithm,
.oid = ASN1_CURSOR ( oid_md5 ),
}
#define ASN1_CURSOR(value)
Define an ASN.1 cursor for a static value.
Definition asn1.h:402
struct digest_algorithm md5_algorithm
MD5 algorithm.
Definition md5.c:287
static uint8_t oid_md5[]
"md5" object identifier
Definition oid_md5.c:31

"md5" OID-identified algorithm

Generic elliptic curve container algorithm.

Definition at line 34 of file oid_md5.c.

34 {
35 .name = "md5",
36 .digest = &md5_algorithm,
37 .oid = ASN1_CURSOR ( oid_md5 ),
38};