diff options
author | H. Peter Anvin <hpa@linux.intel.com> | 2009-03-11 19:46:35 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@linux.intel.com> | 2009-03-11 19:46:35 -0700 |
commit | d16e5e8e8ea526326ed6f8880464399624bfe171 (patch) | |
tree | 9d1eb354f74532c219d31607e28840c4ebde3103 /gpxe/src/crypto/md5.c | |
parent | 43224f02c231ed97a15d8300eaaf69ad8118d222 (diff) | |
download | syslinux-elf-syslinux-3.74-pre3.tar.gz syslinux-elf-syslinux-3.74-pre3.tar.xz syslinux-elf-syslinux-3.74-pre3.zip |
Update gPXE to version 0.9.7syslinux-3.74-pre3
Diffstat (limited to 'gpxe/src/crypto/md5.c')
-rw-r--r-- | gpxe/src/crypto/md5.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/gpxe/src/crypto/md5.c b/gpxe/src/crypto/md5.c index 1fed24fc..76fb8a69 100644 --- a/gpxe/src/crypto/md5.c +++ b/gpxe/src/crypto/md5.c @@ -167,8 +167,7 @@ static void md5_init(void *context) mctx->byte_count = 0; } -static void md5_update(void *context, const void *data, void *dst __unused, - size_t len) +static void md5_update(void *context, const void *data, size_t len) { struct md5_ctx *mctx = context; const u32 avail = sizeof(mctx->block) - (mctx->byte_count & 0x3f); @@ -224,12 +223,12 @@ static void md5_final(void *context, void *out) memset(mctx, 0, sizeof(*mctx)); } -struct crypto_algorithm md5_algorithm = { +struct digest_algorithm md5_algorithm = { .name = "md5", .ctxsize = MD5_CTX_SIZE, .blocksize = ( MD5_BLOCK_WORDS * 4 ), .digestsize = MD5_DIGEST_SIZE, .init = md5_init, - .encode = md5_update, + .update = md5_update, .final = md5_final, }; |