iPXE
Functions
cmd_md4.c File Reference
#include <ipxe/md4.h>
#include <hci/digest_cmd.h>

Go to the source code of this file.

Functions

 FILE_LICENCE (GPL2_OR_LATER_OR_UBDL)
 
static int md4sum_exec (int argc, char **argv)
 
 COMMAND (md4sum, md4sum_exec)
 

Function Documentation

◆ FILE_LICENCE()

FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL  )

◆ md4sum_exec()

static int md4sum_exec ( int  argc,
char **  argv 
)
static

Definition at line 29 of file cmd_md4.c.

29  {
30  return digest_exec ( argc, argv, &md4_algorithm );
31 }
int digest_exec(int argc, char **argv, struct digest_algorithm *digest)
The "digest" command.
Definition: digest_cmd.c:67
struct digest_algorithm md4_algorithm
MD4 algorithm.
Definition: md4.c:261

References digest_exec(), and md4_algorithm.

◆ COMMAND()

COMMAND ( md4sum  ,
md4sum_exec   
)